-
Notifications
You must be signed in to change notification settings - Fork 360
/
Gemfile
105 lines (96 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
99
100
101
102
103
104
105
source 'https://rubygems.org'
gem 'addressable'
gem 'allowy', '>= 2.1.0'
gem 'clockwork', require: false
gem 'cloudfront-signer'
gem 'digest-xxhash'
gem 'eventmachine', '~> 1.2.7'
gem 'fluent-logger'
gem 'googleapis-common-protos', '>= 1.3.12'
gem 'hashdiff'
gem 'honeycomb-beeline'
gem 'httpclient'
gem 'json-diff'
gem 'json_pure'
gem 'json-schema'
gem 'loggregator_emitter', '~> 5.0'
gem 'membrane', '~> 1.0'
gem 'mime-types', '~> 3.6'
gem 'multipart-parser'
gem 'netaddr', '>= 2.0.4'
gem 'net-ssh'
gem 'newrelic_rpm'
gem 'nokogiri', '>=1.10.5'
gem 'oj'
gem 'openssl', '>= 3.2'
gem 'palm_civet'
gem 'prometheus-client'
gem 'public_suffix'
gem 'puma'
gem 'rake'
gem 'redis'
gem 'rubyzip', '>= 1.3.0'
gem 'sequel', '~> 5.86'
gem 'sequel_pg', require: 'sequel'
gem 'sinatra', '~> 3.2'
gem 'sinatra-contrib'
gem 'sshkey'
gem 'statsd-ruby', '~> 1.5.0'
gem 'steno'
gem 'talentbox-delayed_job_sequel', '~> 4.3.0'
gem 'thin'
gem 'vmstat', '~> 2.3'
# Rails Components
gem 'actionpack', '~> 7.2.2'
gem 'actionview', '~> 7.2.1'
gem 'activemodel', '~> 7.2.1'
gem 'railties', '~> 7.2.1'
gem 'azure-storage-blob', git: 'https://github.com/sethboyles/azure-storage-ruby.git', branch: 'x-ms-blob-content-type-fix-1.1'
gem 'fog-aliyun'
gem 'fog-aws'
gem 'fog-azure-rm', git: 'https://github.com/fog/fog-azure-rm.git', branch: 'fog-arm-cf'
gem 'fog-core', '~> 2.4.0'
gem 'fog-google', '~> 1.24.1'
gem 'fog-local'
gem 'fog-openstack'
gem 'cf-uaa-lib', '~> 4.0.4'
group :db do
gem 'mysql2', '~> 0.5.6'
gem 'pg'
end
group :operations do
gem 'pry-byebug'
end
group :test do
gem 'codeclimate-test-reporter', '>= 1.0.8', require: false
gem 'machinist', '~> 1.0.6'
gem 'mock_redis'
gem 'parallel_tests'
gem 'rack-test'
gem 'rspec', '~> 3.13.0'
gem 'rspec_api_documentation', '>= 6.1.0'
gem 'rspec-collection_matchers'
gem 'rspec-instafail'
gem 'rspec-its'
gem 'rspec-rails', '~> 7.1.0'
gem 'rspec-wait'
gem 'rubocop', '~> 1.68.0'
gem 'rubocop-capybara'
gem 'rubocop-factory_bot'
gem 'rubocop-rails', '~> 2.27'
gem 'rubocop-rspec', '~> 3.2'
gem 'rubocop-rspec_rails'
gem 'rubocop-sequel', '~> 0.3.4'
gem 'timecop'
gem 'webmock', '> 2.3.1'
end
group :development do
gem 'byebug'
gem 'debug', '~> 1.9'
gem 'listen'
gem 'roodi'
gem 'solargraph'
gem 'spork', git: 'https://github.com/sporkrb/spork', ref: '224df49' # '~> 1.0rc'
gem 'spring'
gem 'spring-commands-rspec'
end