-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
63 lines (53 loc) · 1.04 KB
/
Gemfile
File metadata and controls
63 lines (53 loc) · 1.04 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
source 'https://rubygems.org'
ruby '2.1.1'
###################
# Suspenders Gems #
###################
gem 'coffee-rails'
gem 'delayed_job_active_record', '>= 4.0.0'
gem 'email_validator'
gem 'flutie'
gem 'high_voltage'
gem 'jquery-rails'
gem 'pg'
gem 'rack-timeout'
gem 'rails', '>= 4.0.2'
gem 'recipient_interceptor'
gem 'sass-rails'
gem 'simple_form'
gem 'title'
gem 'uglifier'
gem 'unicorn'
###############
# Custom Gems #
###############
gem 'figaro'
gem 'sprockets', '<= 2.11.0'
gem 'foundation-rails'
##############
# Group Gems #
##############
group :development do
gem 'foreman'
end
group :development, :test do
gem 'awesome_print'
gem 'better_errors'
gem 'binding_of_caller'
gem 'dotenv-rails'
gem 'factory_girl_rails'
gem 'jazz_hands'
gem 'rspec-rails', '>= 2.14'
end
group :test do
gem 'capybara-webkit', '>= 1.0.0'
gem 'database_cleaner'
gem 'launchy'
gem 'shoulda-matchers'
gem 'simplecov', require: false
gem 'timecop'
gem 'webmock'
end
group :staging, :production do
gem 'newrelic_rpm', '>= 3.7.3'
end