Skip to content

Instantly share code, notes, and snippets.

@sta1r
Created July 22, 2013 16:37
Show Gist options
  • Select an option

  • Save sta1r/6055370 to your computer and use it in GitHub Desktop.

Select an option

Save sta1r/6055370 to your computer and use it in GitHub Desktop.
UAL Beta - Gemfile and Guardfile
# 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
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