forked from getsentry/sentry-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGemfile
More file actions
38 lines (34 loc) · 814 Bytes
/
Gemfile
File metadata and controls
38 lines (34 loc) · 814 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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"
gem "rack-timeout", "0.3.0"
else
gem "rack"
gem "sidekiq"
gem "rack-timeout"
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 "capybara" # rspec system tests
gem "puma" # rspec system tests
gem "timecop"
gem "test-unit", platform: :mri if RUBY_VERSION > '2.2'