Created
October 8, 2012 14:53
-
-
Save sebastiandeutsch/3852950 to your computer and use it in GitHub Desktop.
Gemfile
This file contains 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
source 'https://rubygems.org' | |
# Guard | |
group :guard do | |
gem 'guard' | |
gem 'guard-coffeescript' | |
gem 'guard-haml' | |
gem 'guard-sass' | |
gem 'guard-compass' | |
gem 'guard-livereload' | |
gem 'rb-fsevent', '~> 0.9.1' | |
end |
to fetch bundles
bundle
guard 'sass', :input => 'sass', :output => 'css', :load_paths => Dir.glob(File.join(Gem.dir, "gems", "compass*", "frameworks/blueprint/stylesheets/")) + Dir.glob(File.join(Gem.dir, "gems", "compass*", "frameworks/compass/stylesheets/"))
guard 'sass', :input => 'sass', :output => 'css', :load_paths => Dir.glob(File.join(Gem.dir, "gems", "compass*", "frameworks/blueprint/stylesheets/")) + Dir.glob(File.join(Gem.dir, "gems", "compass*", "frameworks/compass/stylesheets/"))
guard 'livereload', :apply_js_live => false do
watch(%r{js/.+\.(css|js|html)})
watch(%r{css/.+\.(css|js|html)})
end
Grafische Tools zum Kompilieren von Sass und Compass:
http://livereload.com/
http://mhs.github.com/scout-app/
http://incident57.com/codekit/
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
gem install bundler