Created
October 22, 2014 00:41
-
-
Save angrytoast/e48fa23360bb88ba4228 to your computer and use it in GitHub Desktop.
Gemfile
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
| source 'https://rubygems.org' | |
| group :development do | |
| # Sass, Compass and extensions. | |
| gem 'sass' # Sass. | |
| gem 'sass-globbing' # Import Sass files based on globbing pattern. | |
| gem 'compass' # Framework built on Sass. | |
| gem 'compass-validator' # So you can `compass validate`. | |
| gem 'compass-normalize' # Compass version of normalize.css. | |
| gem 'compass-rgbapng' # Turns rgba() into .png's for backwards compatibility. | |
| gem 'bourbon' # Alternate to compass | |
| gem 'susy' # Susy grid framework. | |
| gem 'singularitygs' # Alternative to the Susy grid framework. | |
| gem 'toolkit' # Compass utility from the fabulous Snugug. | |
| gem 'breakpoint' # Manages CSS media queries. | |
| gem 'oily_png' # Faster Compass sprite generation. | |
| gem 'css_parser' # Helps `compass stats` output statistics. | |
| # Guard | |
| gem 'guard' # Guard event handler. | |
| gem 'guard-compass' # Compile on sass/scss change. | |
| gem 'guard-shell' # Run shell commands. | |
| gem 'guard-livereload' # Browser reload. | |
| gem 'yajl-ruby' # Faster JSON with LiveReload in the browser. | |
| # Dependency to prevent polling. Setup for multiple OS environments. | |
| # Optionally remove the lines not specific to your OS. | |
| # https://github.com/guard/guard#efficient-filesystem-handling | |
| gem 'rb-inotify', '~> 0.9', :require => false # Linux | |
| gem 'rb-fsevent', :require => false # Mac OSX | |
| gem 'rb-fchange', :require => false # Windows | |
| end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment