Sha256: e3629c577bcdc8bb2aa31da24ee081ac9d16dbc27738a5f32e8e6367c0429a92

Contents?: true

Size: 1.76 KB

Versions: 13

Compression:

Stored size: 1.76 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]

if 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

13 entries across 13 versions & 1 rubygems

Version Path
rollbar-2.27.1 gemfiles/rails41.gemfile
rollbar-2.27.0 gemfiles/rails41.gemfile
rollbar-2.26.1 gemfiles/rails41.gemfile
rollbar-2.26.0 gemfiles/rails41.gemfile
rollbar-2.25.1 gemfiles/rails41.gemfile
rollbar-2.25.0 gemfiles/rails41.gemfile
rollbar-2.24.0 gemfiles/rails41.gemfile
rollbar-2.23.2 gemfiles/rails41.gemfile
rollbar-2.23.1 gemfiles/rails41.gemfile
rollbar-2.23.0 gemfiles/rails41.gemfile
rollbar-2.22.1 gemfiles/rails41.gemfile
rollbar-2.22.0 gemfiles/rails41.gemfile
rollbar-2.21.0 gemfiles/rails41.gemfile