-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (34 loc) · 1.01 KB
/
Gemfile
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
39
40
41
42
43
44
45
46
source "https://rubygems.org"
git_source(:github) { |name| "https://github.com/#{name}.git" }
gem "sentry-ruby", path: "./"
rack_version = ENV["RACK_VERSION"]
rack_version = "3.0.0" if rack_version.nil?
gem "rack", "~> #{Gem::Version.new(rack_version)}" unless rack_version == "0"
redis_rb_version = ENV.fetch("REDIS_RB_VERSION", "5.0")
gem "redis", "~> #{redis_rb_version}"
gem "puma"
gem "rake", "~> 12.0"
gem "rspec", "~> 3.0"
gem "rspec-retry"
gem "timecop"
gem "simplecov"
gem "simplecov-cobertura", "~> 1.4"
gem "rexml"
ruby_version = Gem::Version.new(RUBY_VERSION)
if ruby_version >= Gem::Version.new("2.3.0")
gem "stackprof" unless RUBY_PLATFORM == "java"
end
if ruby_version >= Gem::Version.new("2.6.0")
gem "debug", github: "ruby/debug", platform: :ruby
gem "irb"
if ruby_version >= Gem::Version.new("3.0.0")
gem "ruby-lsp-rspec"
end
end
gem "pry"
gem "benchmark-ips"
gem "benchmark_driver"
gem "benchmark-ipsa"
gem "benchmark-memory"
gem "yard", github: "lsegal/yard", ref: 'main'
gem "webrick"