Sha256: deca68bcf213f8eabd9ff5741cad770d117851d3f7b769f11b08f9e813a55bbb
Contents?: true
Size: 1.38 KB
Versions: 2
Compression:
Stored size: 1.38 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 gem 'capistrano', :require => false gem 'sucker_punch', '~> 2.0' gem 'shoryuken' gem 'codacy-coverage' gem 'simplecov' 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' gem 'webmock', :require => false gem 'resque' gem 'aws-sdk-sqs' gemspec :path => '../'
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rollbar-3.0.1 | gemfiles/rails41.gemfile |
rollbar-3.0.0 | gemfiles/rails41.gemfile |