This repository has been archived by the owner on Feb 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
76 lines (60 loc) · 1.97 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
# frozen_string_literal: true
ruby '2.6.6'
# You *must* specify versions for each dependency (this is a Hack Club
# convention, not an actual technical requirement)
source 'https://rubygems.org'
gem 'bootsnap', '~> 1.3'
gem 'rails', '5.2.5'
gem 'pg', '~> 0.18.4'
gem 'puma', '~> 4.3'
gem 'active_model_serializers', '~> 0.10.2'
gem 'analytics-ruby', require: 'segment'
gem 'aws-sdk-s3'
gem 'bugsnag', '~> 6.7', '>= 6.7.3'
gem 'chronic', '~> 0.10.2'
gem 'concurrent-ruby', require: 'concurrent'
gem 'faker', '~> 1.6'
gem 'geocoder', '~> 1.6'
gem 'mimemagic', '~> 0.3'
gem 'mini_magick', '~> 4.9'
gem 'octokit', '~> 4.7'
gem 'paranoia', '~> 2.4'
gem 'pdfkit', '~> 0.8.2'
gem 'pundit', '~> 1.1'
gem 'rack-cors', require: 'rack/cors'
gem 'redcarpet', '~> 3.5.1'
gem 'redis-rails', '~> 5.0.2'
gem 'rest-client', '~> 2.0'
gem 'sidekiq', '~> 5.2'
gem 'skylight', '~> 2.0', '>= 2.0.1'
gem 'stripe', '~> 3.0'
gem 'terminal-table', '~> 1.7'
gem 'timezone', '~> 1.0'
gem 'wkhtmltopdf-binary', '~> 0.12.3'
gem 'rails_autoscale_agent', '~> 0.3.1'
group :development, :test do
gem 'dotenv-rails', require: 'dotenv/rails-now'
gem 'listen', '~> 3.0.5'
gem 'spring'
gem 'spring-commands-rspec', '~> 1.0'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'byebug', platform: :mri
gem 'database_cleaner', '~> 1.5', '>= 1.5.3'
gem 'email_spec', '~> 2.1', '>= 2.1.1'
gem 'factory_bot_rails', '~> 4.7', '>= 4.7.0'
gem 'rspec-rails', '~> 3.5', '>= 3.5.2'
gem 'vcr', '~> 3.0'
gem 'webmock', '~> 2.1'
gem 'shoulda-matchers'
# Use Guard for a great test workflow
gem 'guard-rspec', '~> 4.7', require: false
# Allow formatting rspec test results in junit's format, giving CircleCI
# better insight into tests
gem 'rspec_junit_formatter', '~> 0.3.0'
# For test coverage reports on Codacy
gem 'codacy-coverage', '~> 1.1', '>= 1.1.8', require: false
gem 'rubocop', '~> 0.52.1', require: false
end
gem 'gruff'
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
gem 'twilio-ruby', '~> 5.61'