Sha256: 1b66076b585d7031e9f936655bd46bd667850c4b684df37539406c38d5536979
Contents?: true
Size: 1.89 KB
Versions: 3
Compression:
Stored size: 1.89 KB
Contents
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', '4.1.12' gem 'rake' gem 'rspec-rails', '~> 3.4' gem 'sqlite3', '< 1.4.0', :platform => [:ruby, :mswin, :mingw] unless is_jruby if RUBY_VERSION >= '2.4.0' gem 'oj', '~> 2.16.1' else gem 'oj', '~> 2.12.14' end end if RUBY_VERSION > '1.8.7' && RUBY_VERSION < '2.2.2' gem 'sidekiq', '~> 2.13.0' else gem 'sidekiq', '>= 2.13.0' end platforms :rbx do gem 'minitest' gem 'racc' gem 'rubinius-developer_tools' gem 'rubysl', '~> 2.0' unless RUBY_VERSION.start_with?('1') end if RUBY_VERSION.start_with?('1.9') gem 'capistrano', '<= 3.4.1', :require => false gem 'sucker_punch', '~> 1.0' gem 'shoryuken', '>= 4.0.0', '<= 4.0.2' elsif RUBY_VERSION.start_with?('2') gem 'capistrano', :require => false gem 'sucker_punch', '~> 2.0' gem 'shoryuken' gem 'codacy-coverage' gem 'simplecov' end gem 'delayed_job', :require => false gem 'redis' gem 'resque' gem 'sinatra' gem 'database_cleaner', '~> 1.0.0' gem 'generator_spec' gem 'girl_friday', '>= 0.11.1' gem 'rspec-command' if Gem::Version.new(RUBY_VERSION) < Gem::Version.new('2.0') gem 'mime-types', '< 3.0' gem 'public_suffix', '< 1.5' gem 'webmock', '< 2.3.0', :require => false else gem 'webmock', :require => false end gem 'resque' gem 'aws-sdk-sqs' gemspec :path => '../'
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
rollbar-2.20.1 | gemfiles/rails41.gemfile |
rollbar-2.20.0 | gemfiles/rails41.gemfile |
rollbar-2.19.4 | gemfiles/rails41.gemfile |