Sha256: 086a7946d660df42c4c171f20e48f8632086069777da498560d41df004a7748b

Contents?: true

Size: 694 Bytes

Versions: 5

Compression:

Stored size: 694 Bytes

Contents

source "https://rubygems.org/"

gemspec

if ENV["RAILS_VERSION"] && (ENV["RAILS_VERSION"].to_i == 4)
  gem "rails", "< 5"
  gem "rspec-rails"
elsif ENV["RAILS_VERSION"] && (ENV["RAILS_VERSION"].to_i == 0)
  # no-op. No Rails.
else
  gem "rails", "< 6"
  gem "rspec-rails"
end

if RUBY_VERSION < '2.0'
  gem "mime-types", "< 3.0.0"
  gem "nokogiri", "~> 1.6.8"
  gem "rack", "~> 1.6.8"
  gem "sidekiq", "< 3.2"
else
  gem "rack"
  gem "sidekiq"
end
gem "pry"
gem "pry-coolline"
gem "benchmark-ips"
gem "benchmark-ipsa" if RUBY_VERSION > '2.0'
gem "ruby-prof", platform: :mri
gem "rake"
gem "rubocop", "~> 0.41.1"
gem "rspec"
gem "timecop"
gem "test-unit", platform: :mri if RUBY_VERSION > '2.2'

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
sentry-raven-2.7.1 Gemfile
sentry-raven-2.6.3 Gemfile
sentry-raven-2.6.2 Gemfile
sentry-raven-2.6.1 Gemfile
sentry-raven-2.6.0 Gemfile