forked from xbmc/chorus2
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
executable file
·27 lines (23 loc) · 1.33 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
source 'https://rubygems.org'
group :development do
# Sass, Compass and extensions.
# Sass, Compass and extensions.
gem 'sass', '~> 3.3.8' # Sass.
gem 'sass-globbing' # Import Sass files based on globbing pattern.
gem 'compass', '~> 1.0.0.alpha.19' # 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 'susy', '~> 2.1.2' # 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.
gem 'bootstrap-sass', '~> 3.3.1.0' # Twitter bootstrap theme.
# 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