forked from JamesChevalier/Launch-Soon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
42 lines (37 loc) · 871 Bytes
/
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
source 'https://rubygems.org'
group :assets do
gem 'sass-rails', '~> 3.2.3'
gem 'coffee-rails', '~> 3.2.1'
gem 'uglifier', '>= 1.0.3'
gem 'compass-rails'
gem 'zurb-foundation', '3.2.5'
end
group :development, :test do
gem 'capybara'
gem 'rspec-rails'
gem 'factory_girl_rails'
end
group :development do
gem 'better_errors'
gem 'binding_of_caller'
gem 'brakeman'
gem 'bundler-audit'
gem 'rb-fsevent', '~> 0.9.1'
gem 'quiet_assets'
gem 'rubocop'
gem 'ruby_gntp' # also install growlnotify from the Extras/growlnotify/growlnotify.pkg in Growl disk image
gem 'rails_best_practices'
end
group :test do
gem 'faker'
gem 'guard-rspec'
gem 'guard-spork'
gem 'launchy'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'spork'
end
gem 'coveralls', require: false
gem 'hominid'
gem 'jquery-rails'
gem 'rails', '3.2.14'