-
Notifications
You must be signed in to change notification settings - Fork 286
Expand file tree
/
Copy pathGemfile
More file actions
90 lines (74 loc) · 2.66 KB
/
Gemfile
File metadata and controls
90 lines (74 loc) · 2.66 KB
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
# This Gemfile is compatible with Ruby 2.5.0 or greater. To test with
# earlier Rubies, use the appropriate Gemfile from the ./gemfiles/ dir.
ruby '4.0.0'
source 'https://rubygems.org'
# Used by spec/commands/rollbar_rails_runner_spec, and can be used whenever a
# new process is created during tests. (Testing rake tasks, for example.)
# This is a workaround for ENV['BUNDLE_GEMFILE'] not working as expected on Travis.
# We use the ||= assignment because Travis loads the gemfile twice, the second time
# with the wrong gemfile path.
ENV['CURRENT_GEMFILE'] ||= __FILE__
is_jruby = defined?(JRUBY_VERSION) || (defined?(RUBY_ENGINE) && RUBY_ENGINE == 'jruby')
GEMFILE_RAILS_VERSION = '8.1.0'.freeze
GEM_VERSION_RAILS = Gem::Version.new(GEMFILE_RAILS_VERSION)
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'appraisal'
gem 'jruby-openssl', :platform => :jruby
gem 'rails', GEMFILE_RAILS_VERSION
gem 'rake'
if GEM_VERSION_RAILS < Gem::Version.new('6.0')
gem 'rspec-rails', '~> 3.4'
elsif GEM_VERSION_RAILS < Gem::Version.new('7.0')
gem 'rspec-rails', '~> 4.0.2'
else
gem 'rspec-rails', '~> 6.0.3'
end
if GEM_VERSION_RAILS < Gem::Version.new('7.1')
gem 'concurrent-ruby', '1.3.4'
end
if GEM_VERSION_RAILS < Gem::Version.new('8.0')
gem 'sqlite3', '~> 1.4', :platform => [:ruby, :mswin, :mingw]
elsif GEM_VERSION_RAILS < Gem::Version.new('6.0')
gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]
else
gem 'sqlite3', '~> 2.1', :platform => [:ruby, :mswin, :mingw]
end
gem 'sidekiq', '>= 6.4.0'
platforms :rbx do
gem 'minitest'
gem 'racc'
gem 'rubinius-developer_tools'
gem 'rubysl', '~> 2.0' if RUBY_VERSION.start_with?('2')
end
gem 'capistrano', :require => false
gem 'shoryuken'
gem 'simplecov'
gem 'sucker_punch', '~> 2.0'
unless is_jruby
# JRuby doesn't support fork, which is required for this test helper.
gem 'rspec-command'
end
gem 'aws-sdk-sqs'
if GEM_VERSION_RAILS >= Gem::Version.new('5.2')
gem 'database_cleaner'
elsif GEM_VERSION_RAILS < Gem::Version.new('5.0')
gem 'database_cleaner', '~> 1.0.0'
else
gem 'database_cleaner', '~> 1.8.4'
end
if GEM_VERSION_RAILS < Gem::Version.new('6.0')
gem 'delayed_job', :require => false
else
gem 'delayed_job', '~> 4.1', :require => false
end
gem 'cgi' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('3.5.0')
gem 'benchmark' if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('4.0.0')
gem 'generator_spec'
gem 'redis', '<= 4.8.0'
gem 'resque', '< 2.0.0'
gem 'rubocop', '1.15.0', :require => false # pin specific version, update manually
gem 'rubocop-performance', :require => false
gem 'secure_headers', '~> 6.3.2', :require => false
gem 'sinatra'
gem 'webmock', :require => false
gemspec