forked from SumOfUs/Champaign
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
98 lines (92 loc) · 2.36 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
# coding: utf-8
# frozen_string_literal: true
source 'https://rubygems.org'
ruby '2.4.1'
gem 'aasm'
gem 'activeadmin'
gem 'bcrypt', '~> 3.1.7'
gem 'braintree', '~> 2.54.0'
gem 'countries', require: 'countries/global'
gem 'country_select'
gem 'devise', '~> 4.3'
gem 'font-awesome-sass', '~> 4.7.0'
gem 'geocoder'
gem 'gocardless_pro'
gem 'hiredis'
gem 'httparty'
gem 'i18n-js'
gem 'jbuilder'
gem 'kaminari'
gem 'liquid'
gem 'loofah', '~> 2.2.1'
gem 'money'
gem 'omniauth-google-oauth2'
gem 'pg'
gem 'phony_rails'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '~> 5.2'
gem 'rails-html-sanitizer', '~> 1.0.4'
gem 'rails-i18n'
gem 'readthis'
gem 'redis', require: ['redis', 'redis/connection/hiredis']
gem 'slim-rails'
## Use Paper Trail for containing a full history of our edits.
gem 'action_parameter'
gem 'aws-sdk', '~> 3'
gem 'paper_trail', '~> 9.0'
gem 'paperclip', '~> 6.0'
gem 'rmagick' # rmagick for image processing
## AWS SDK for Rails - makes SES integration easy
gem 'actionkit_connector', git: 'https://github.com/SumOfUs/actionkit_connector', branch: 'master'
gem 'airbrake', '~> 5.7.1'
gem 'airbrake-ruby', '1.7.1'
gem 'aws-sdk-rails'
gem 'bootsnap', require: false
gem 'bootstrap-sass', '~> 3.3.5'
gem 'browser', '~> 2.0', '>= 2.0.3'
gem 'compass-rails' # was using git master branch before
gem 'config'
gem 'envyable', require: 'envyable/rails-now'
gem 'friendly_id'
gem 'jwt'
gem 'logger'
gem 'lograge', '~> 0.10.0'
gem 'metamagic'
gem 'money-oxr'
gem 'newrelic_rpm'
gem 'puma', '~> 3.12.0'
gem 'sass-rails'
gem 'sentry-raven'
gem 'share_progress', git: 'https://github.com/SumOfUs/share_progress', branch: 'master', require: false
gem 'sprockets-rails'
gem 'turnout'
gem 'twilio-ruby'
gem 'uglifier'
gem 'webpacker', '~> 3.0'
group :development, :test do
gem 'byebug'
gem 'capybara' # Capybara for integration testing
gem 'database_cleaner'
gem 'factory_girl_rails'
gem 'faker'
gem 'magic_lamp'
gem 'rspec-rails'
gem 'rubocop', require: false
gem 'spring-commands-rspec'
gem 'vcr'
end
group :development do
gem 'annotate'
gem 'foreman', require: false
gem 'guard-rspec', require: false
gem 'terminal-notifier-guard' # [OSX] brew install terminal-notifier
gem 'web-console'
end
group :test do
gem 'coveralls', '~> 0.8.21', require: false
gem 'poltergeist'
gem 'rails-controller-testing'
gem 'rspec-json_expectations'
gem 'timecop'
gem 'webmock'
end