-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
72 lines (61 loc) · 1.32 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
source 'https://rubygems.org'
ruby '2.2.4'
gem 'rails', '4.2.7'
gem 'pg'
gem 'redis'
gem 'redis-objects'
gem 'redis-rails'
gem 'database_cleaner'
gem 'phony_rails', :require => false
gem 'validates_email_format_of'
# Active Job
gem 'sidekiq'
gem 'sinatra' # Used for the sidekiq UI
# API consuming
gem 'rest-client', :require => false
gem 'oauth2'
gem 'twilio-ruby', :require => false
gem 'nationbuilder-rb', require: 'nationbuilder'
# API publishing
gem 'rails-api'
gem 'jbuilder', '~> 2.0'
gem 'versionist'
gem 'rack-cors', :require => 'rack/cors'
gem 'oj'
gem 'will_paginate'
# SysOps + Monitoring
group :production do
gem 'rails_12factor' # Heroku-required
gem 'newrelic_rpm'
end
gem 'unicorn'
gem 'airbrake'
# Payment processing
gem 'stripe'
# Use ActiveModel has_secure_password
# gem 'bcrypt', '~> 3.1.7'
group :development, :test do
gem 'byebug'
gem 'spring'
gem 'spring-commands-rspec'
gem 'dotenv-rails'
gem 'rspec-rails'
gem 'hirb'
end
group :development do
gem 'web-console', '~> 2.0'
gem 'annotate', '>=2.6.0'
gem 'rack-mini-profiler'
gem 'bullet'
end
group :test do
gem 'codeclimate-test-reporter'
gem 'climate_control'
gem 'oga' #xml parsing
gem 'factory_girl_rails'
gem 'faker'
gem 'webmock'
gem 'fakeredis', :require => 'fakeredis/rspec'
gem 'timecop'
gem 'shoulda-matchers'
end