-
Notifications
You must be signed in to change notification settings - Fork 116
/
Gemfile
22 lines (18 loc) · 1.02 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
source 'https://rubygems.org'
group :development do
# Sass, Compass and extensions.
gem 'sass', '~> 3.4' # Sass.
gem 'sass-globbing' # Import Sass files based on globbing pattern.
gem 'compass', '>= 1.0.3' # 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.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.
gem 'rb-inotify', '~> 0.9', :require => false # Linux
end