forked from standardnotes/syncing-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
51 lines (37 loc) · 960 Bytes
/
Copy pathGemfile
File metadata and controls
51 lines (37 loc) · 960 Bytes
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
source 'https://rubygems.org'
gem 'aws-sdk-sqs'
gem 'bcrypt'
gem 'device_detector'
gem 'dotenv-rails'
gem 'haml-rails'
gem 'jwt'
gem 'mysql2', '>= 0.3.13', '< 0.5'
gem 'rack-cors', require: 'rack/cors'
gem 'rails', '= 5.2.5'
gem 'rotp'
gem 'rubocop', '~> 0.79.0', require: false
gem 'rubocop-shopify', require: false
gem 'secure_headers'
gem 'shoryuken'
gem 'whenever', require: false
# Used for 'respond_to' feature
gem 'responders', '~> 2.0'
group :development, :test, :docker_development do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug'
gem 'listen'
gem 'puma'
gem 'rspec-rails'
end
group :test do
gem 'simplecov', require: false
gem 'factory_bot_rails'
end
gem "lograge", "~> 0.11.2"
gem "aws-sdk-s3", "~> 1.64"
gem 'bootsnap', '~> 1.4'
gem "aws-sdk-sns", "~> 1.33"
gem "ar-octopus", "~> 0.10.2"
gem "redis", "~> 4.2"
gem "newrelic_rpm", "~> 6.15"
gem "rack-timeout", "~> 0.6.0"