Update GemFile & .gitignore

Updates the Gemfile to fix an issue in windows. Additionally the gitignore
was cleaned up.
This commit is contained in:
Andrew Senetar 2015-06-09 22:18:58 -05:00
parent b6566012a8
commit c5c8876717
2 changed files with 7 additions and 3 deletions

8
.gitignore vendored
View File

@ -1,10 +1,12 @@
# Jekyll and Scss #############
## Jekyll
#############
.jekyll-metadata
_site/ _site/
/sass_cache/
Gemfile.lock Gemfile.lock
############# #############
## Windows ## Windows
############# #############
# Windows image file caches # Windows image file caches

View File

@ -2,3 +2,5 @@ source 'https://rubygems.org'
require 'rbconfig' require 'rbconfig'
gem 'wdm', '>=0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i gem 'wdm', '>=0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i
gem 'github-pages' gem 'github-pages'
# force minimum version of pygments.rb to fix windows issue
gem 'pygments.rb', '>=0.6.1'