Created
July 22, 2013 16:37
-
-
Save sta1r/6055370 to your computer and use it in GitHub Desktop.
UAL Beta - Gemfile and Guardfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Why use bundler? | |
| # Well, not all development dependencies install on all rubies. Moreover, `gem | |
| # install sinatra --development` doesn't work, as it will also try to install | |
| # development dependencies of our dependencies, and those are not conflict free. | |
| # So, here we are, `bundle install`. | |
| # | |
| # If you have issues with a gem: `bundle install --without-coffee-script`. | |
| source 'https://rubygems.org' | |
| group :development do | |
| gem 'sass' | |
| gem 'compass' | |
| gem 'jekyll' | |
| gem 'guard' | |
| gem 'guard-compass' | |
| gem 'guard-jekyll' | |
| end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| guard 'compass' do | |
| watch(%r{(.*)\.s[ac]ss$}) | |
| end | |
| guard 'jekyll' do | |
| watch /^.*\.(htm|html|xml|js|css|ttf|eot|woff|jpg|svg)/ | |
| ignore %r{^_site/}, %r{/assets/styles/}, %r{/.sass-cache/} | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment