-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
106 lines (79 loc) · 1.85 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
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
source 'https://rubygems.org'
ruby '2.1.2'
gem 'rails', '4.1.4'
gem 'rails-api'
gem 'active_model_serializers'
gem 'hstore_accessor'
gem 'pg'
gem 'permanent_records'
gem 'redis'
gem 'redis-namespace'
gem 'sucker_punch'
gem 'hashie'
gem 'faraday'
gem 'markerb'
gem 'redcarpet' # for markerb
gem 'oj'
gem 'oj_mimic_json'
gem 'bcrypt'
gem 'figaro'
group :production do
gem 'unicorn'
gem 'kgio' # Speeds up dalli
gem 'dalli'
gem 'rack-cache'
gem 'rails_12factor'
gem 'rollbar', require: 'rollbar/rails'
end
group :production do
gem 'newrelic_rpm'
end
group :development, :profile, :test do
gem 'thin' # Puma doesn't die nicely in development
gem 'spring'
gem 'foreman'
gem 'hirb'
gem 'awesome_print'
gem 'pry'
gem 'pry-rails'
gem 'pry-remote'
gem 'pry-stack_explorer'
gem 'pry-byebug'
# gem 'rb-fsevent' if RbConfig::CONFIG['target_os'] =~ /darwin/i
#########
# Brought all to dev/test as some are picky about location
gem 'guard'
gem 'spring-commands-rspec'
gem 'guard-rspec'
gem 'terminal-notifier-guard'
gem 'rspec-nc'
gem 'rspec-rails'
gem 'factory_girl_rails'
gem 'faker'
gem 'zonebie'
gem 'timecop'
gem 'simplecov', '~> 0.7.1', require: false # Don't upgrade to 0.8 until https://github.com/colszowka/simplecov/issues/281
#########
end
group :development, :profile do
gem 'letter_opener'
gem 'brakeman', require: false
end
group :profile do
gem 'ruby-prof'
end
## Other/Old Gems ##
# gem 'sidekiq'
# gem 'sidetiq'
# gem 'sinatra', require: false # For sidekiq web UI - see sidekiq.rake
# gem 'sidekiq-unique-jobs'
# gem 'sidekiq-limit-fetch'
# gem 'roadie'
# gem 'gibberish'
# gem 'bullet'
# gem 'redis-objects'
# gem 'rack-rewrite'
# gem 'attrio'
# gem 'whenever', require: false
# gem 'mandrill-rails' # For mandrill webhooks
# gem 'railroady' # Generates model relation graphs in doc/