mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
f4ce5fe9ee
* Run integration tests in default * Add retry in CI * Convert integration test to ruby script for Windows * Attempt to add finicky tests back * Possible kinda janky solution * Only run master branch on travis (syntax fix) * Don't do integration tests on windows Can't be bothered to make those tests crossplatform * Remove join timeouts on read, let the main test timeout do it * Assert once * Sigh.
18 lines
338 B
Ruby
18 lines
338 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rdoc"
|
|
gem "rake-compiler"
|
|
|
|
gem "rack", "< 3.0"
|
|
gem "minitest", "~> 5.9"
|
|
gem "minitest-retry"
|
|
|
|
gem "jruby-openssl", :platform => "jruby"
|
|
|
|
gem "rubocop", "~> 0.49.1"
|
|
|
|
if %w(2.2.7 2.3.4 2.4.1).include? RUBY_VERSION
|
|
gem "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]
|
|
end
|