Skip to content

Instantly share code, notes, and snippets.

@sebastiandeutsch
Created October 8, 2012 14:53
Show Gist options
  • Save sebastiandeutsch/3852950 to your computer and use it in GitHub Desktop.
Save sebastiandeutsch/3852950 to your computer and use it in GitHub Desktop.
Gemfile
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
@sebastiandeutsch
Copy link
Author

gem install bundler

@git4711
Copy link

git4711 commented Oct 8, 2012

to fetch bundles

bundle

@sebastiandeutsch
Copy link
Author

@sebastiandeutsch
Copy link
Author

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/"))

@sebastiandeutsch
Copy link
Author

            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

@molily
Copy link

molily commented Oct 8, 2012

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