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
34 lines (27 loc) · 627 Bytes
/
Gemfile
File metadata and controls
34 lines (27 loc) · 627 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
source "https://rubygems.org/"
gemspec
rails_version = ENV["RAILS_VERSION"]
rails_version = "5.2" if rails_version.nil?
if rails_version.to_f != 0
gem "rails", "~> #{rails_version}"
gem "rspec-rails", "~> 4.0"
end
gem "delayed_job"
gem "sidekiq"
gem "rack"
gem "rack-timeout"
gem "pry"
gem "benchmark-ips"
gem "benchmark_driver"
gem "benchmark-ipsa"
gem "benchmark-memory"
gem "ruby-prof", platform: :mri
gem "rake", "> 12"
gem "rubocop", "~> 0.81.0"
gem "rspec", "~> 3.9.0"
gem "capybara", "~> 3.15.0" # rspec system tests
gem "puma" # rspec system tests
gem "timecop"
gem "test-unit"
gem "simplecov"
gem "codecov"