Skip to content

Commit

Permalink
chore: update dependencies for ci builds
Browse files Browse the repository at this point in the history
  • Loading branch information
waltjones committed Nov 6, 2020
1 parent 30a5a77 commit 397cec8
Show file tree
Hide file tree
Showing 10 changed files with 47 additions and 98 deletions.
17 changes: 7 additions & 10 deletions gemfiles/rails30.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,19 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]
gem 'jruby-openssl', :platform => :jruby
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'appraisal', '= 1.0.2'
gem 'rails', '3.0.20'
gem 'hitimes', '< 1.2.2'
gem 'mixlib-shellout', '<= 2.0.0'
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rake', '< 11'
gem 'rspec-rails', '>= 2.14.0'
gem 'simplecov-html', '<= 0.10.2'

if RUBY_VERSION < '2.2.2'
gem 'sidekiq', '~> 2.13.0'
Expand All @@ -38,11 +34,12 @@ gem 'capistrano', :require => false
gem 'sucker_punch', '~> 2.0'
gem 'shoryuken'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'sinatra'
gem 'delayed_job', :require => false
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'redis-namespace', '<= 1.5.0'
gem 'database_cleaner', '~> 1.0.0'
gem 'genspec', '>= 0.2.8'
gem 'girl_friday', '>= 0.11.1'
Expand Down
20 changes: 9 additions & 11 deletions gemfiles/rails31.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,18 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]
gem 'jruby-openssl', :platform => :jruby
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'appraisal', '= 1.0.2'
gem 'mixlib-shellout', '<= 2.0.0'
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rails', '3.1.12'
gem 'rspec-rails', '~> 3.4'
gem 'rake'
gem 'rake', '< 11'
gem 'simplecov-html', '<= 0.10.2'

if RUBY_VERSION < '2.2.2'
gem 'sidekiq', '~> 2.13.0'
Expand All @@ -37,11 +33,13 @@ gem 'capistrano', :require => false
gem 'sucker_punch'
gem 'shoryuken'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'sinatra'
gem 'delayed_job', :require => false
gem 'redis'
gem 'rack-cache', '<= 1.9.0'
gem 'redis', '<= 3.3.5'
gem 'redis-namespace', '<= 1.5.0'
gem 'database_cleaner'
gem 'girl_friday'
gem 'generator_spec'
Expand Down
16 changes: 6 additions & 10 deletions gemfiles/rails32.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,13 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'mixlib-shellout', '<= 2.0.0'
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rails', '3.2.22'
gem 'rake'
gem 'rspec-rails', '~> 3.4'
Expand All @@ -39,10 +34,11 @@ gem 'capistrano', :require => false
gem 'sucker_punch', '~> 2.0'
gem 'shoryuken'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'delayed_job', :require => false
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'redis-namespace', '<= 1.5.0'
gem 'sinatra'

gem 'database_cleaner', '~> 1.0.0'
Expand Down
16 changes: 6 additions & 10 deletions gemfiles/rails40.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,13 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'mixlib-shellout', '<= 2.0.0'
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rails', '4.0.13'
gem 'rake'
gem 'rspec-rails', '~> 3.4'
Expand All @@ -40,10 +35,11 @@ gem 'sucker_punch', '~> 2.0'
gem 'json', '~> 2.0'
gem 'shoryuken'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'delayed_job', :require => false
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'redis-namespace', '<= 1.5.0'
gem 'resque'
gem 'sinatra'

Expand Down
16 changes: 6 additions & 10 deletions gemfiles/rails41.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,13 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'mixlib-shellout', '<= 2.0.0'
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rails', '4.1.12'
gem 'rake'
gem 'rspec-rails', '~> 3.4'
Expand All @@ -36,10 +31,11 @@ gem 'capistrano', :require => false
gem 'sucker_punch', '~> 2.0'
gem 'shoryuken'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'delayed_job', :require => false
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'redis-namespace', '<= 1.5.0'
gem 'resque'
gem 'sinatra'

Expand Down
14 changes: 4 additions & 10 deletions gemfiles/rails42.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,13 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)
is_not_jruby = !is_jruby

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 2.0.5'
gem 'rails', '4.2.8'
gem 'rake'
gem 'rspec-rails', '~> 3.4'
Expand Down Expand Up @@ -45,7 +39,7 @@ gem 'delayed_job', :require => false
gem 'generator_spec'
gem 'girl_friday', '>= 0.11.1'
gem 'rspec-command'
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'resque'
gem 'sinatra'

Expand All @@ -54,7 +48,7 @@ gem 'nokogiri', '~> 1.6.0' if Gem::Version.new(RUBY_VERSION) <= Gem::Version.new
gem 'sucker_punch', '~> 2.0'
gem 'webmock', :require => false
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

gem 'aws-sdk-sqs'

Expand Down
14 changes: 4 additions & 10 deletions gemfiles/rails50.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,12 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 3.1.1'
gem 'rails', '~> 5.0.7'
gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]

Expand All @@ -37,7 +31,7 @@ end
gem 'capistrano', :require => false
gem 'sucker_punch', '~> 2.0'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3')
gem 'rack', '2.1.2'
Expand All @@ -49,7 +43,7 @@ gem 'database_cleaner'
gem 'delayed_job', :require => false
gem 'generator_spec'
gem 'girl_friday', '>= 0.11.1'
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'resque'

unless is_jruby
Expand Down
14 changes: 4 additions & 10 deletions gemfiles/rails51.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,12 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'net-ssh', '<= 3.1.1'
gem 'public_suffix', '<= 3.1.1'
gem 'rails', '~> 5.1.7'
gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw]

Expand All @@ -37,7 +31,7 @@ end
gem 'capistrano', :require => false
gem 'sucker_punch', '~> 2.0'
gem 'codacy-coverage'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.3')
gem 'rack', '2.1.2'
Expand All @@ -50,7 +44,7 @@ gem 'database_cleaner'
gem 'delayed_job', :require => false
gem 'generator_spec'
gem 'girl_friday', '>= 0.11.1'
gem 'redis'
gem 'redis', '<= 3.3.5'
gem 'resque'

unless is_jruby
Expand Down
10 changes: 1 addition & 9 deletions gemfiles/rails52.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,8 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'rails', '~> 5.2.3'
Expand Down Expand Up @@ -46,7 +38,7 @@ gem 'generator_spec'
gem 'girl_friday', '>= 0.11.1'
gem 'redis'
gem 'resque'
gem 'simplecov'
gem 'simplecov', '<= 0.17.1'

unless is_jruby
# JRuby doesn't support fork, which is required for this test helper.
Expand Down
8 changes: 0 additions & 8 deletions gemfiles/rails60.gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,8 @@ require 'rubygems/version'

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) && 'jruby' == RUBY_ENGINE)

gem 'appraisal'
gem 'activerecord-jdbcsqlite3-adapter', :platform => :jruby
gem 'jruby-openssl', :platform => :jruby
gem 'rails', '6.0.2.1'
Expand Down

0 comments on commit 397cec8

Please sign in to comment.