forked from puma/puma
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGemfile
More file actions
46 lines (37 loc) · 1011 Bytes
/
Gemfile
File metadata and controls
46 lines (37 loc) · 1011 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
39
40
41
42
43
44
45
46
source "https://rubygems.org"
gemspec
gem "rake-compiler"
gem "json", "~> 2.18"
gem "nio4r", "~> 2.7"
gem "minitest", ">= 5.26"
gem "minitest-retry"
gem "minitest-proveit"
gem "minitest-stub-const"
gem "concurrent-ruby", "~> 1.3"
if ENV['PUMA_CI_RACK']&.strip == 'rack2'
gem "rack" , "~> 2.2"
gem "rackup", "~> 1.0"
## Temporarily disable using rack & rackup main branches
#elsif RUBY_PATCHLEVEL == -1
# gem "rack" , github: "rack/rack" , branch: "main"
# gem "rackup", github: "rack/rackup", branch: "main"
else
gem "rack" , "~> 3.2"
gem "rackup", "~> 2.3"
end
gem "jruby-openssl", :platform => "jruby"
unless ENV['PUMA_NO_RUBOCOP'] || RUBY_PLATFORM.include?('mswin')
gem "rubocop"
gem 'rubocop-performance', require: false
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.2")
gem "minitest-mock"
end
if Gem::Version.new(RUBY_VERSION) >= Gem::Version.new("3.5")
gem "logger"
if ::Gem.win_platform?
gem "fiddle"
end
end
gem 'm'
gem "localhost", require: false