mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00

* Added puma to automatically use localhost gem to self signed https if defined. * Update files according to rubocop rules * Moved localhost authority from tcp_listener to ssl_listener Use MiniSSLContext and MiniSSLServer for localhost authority's self-signed ceritifcates * Reformatted codes according to rubocop rules * Fixed test case crashing in production env * Removed transform_keys to support ruby version < 2.5.0 * Changed wrong keystore_pass key given to context to keystore-pass * Remove accept_nonblock.rb since we are using MiniSSL Server * Removed localhost_authority test case running in JRUBY since localhost_authority doesn't suppot JKS yet. * Reload Localhost authority if not loaded runned from puma cli * Memorise localhost authority object on init * Added readme for self-signed certificates * Removed jruby version * Update readme.md * Added validations to check certificate * Remove ssl test running in no ssl implementations * Changed host in localhost authority * Update ssl events wrong arguments error * Update README.md * Update binder.rb * Update binder.rb * Update binder.rb * Update binder.rb * Update request.rb * Update binder * Removed running test in JRUBY * Removed testing localhost authority file while in JRUBY * Removed unused variables * Updated readme Co-authored-by: Nate Berkopec <nate.berkopec@gmail.com>
26 lines
520 B
Ruby
26 lines
520 B
Ruby
source "https://rubygems.org"
|
|
|
|
gemspec
|
|
|
|
gem "rdoc"
|
|
gem "rake-compiler", "~> 1.1.1"
|
|
|
|
gem "json", "~> 2.3"
|
|
gem "nio4r", "~> 2.0"
|
|
gem "rack", "~> 1.6"
|
|
gem "minitest", "~> 5.11"
|
|
gem "minitest-retry"
|
|
gem "minitest-proveit"
|
|
gem "minitest-stub-const"
|
|
gem "sd_notify"
|
|
|
|
gem "jruby-openssl", :platform => "jruby"
|
|
|
|
gem "rubocop", "~> 0.58.0"
|
|
|
|
if %w(2.2.7 2.2.8 2.2.9 2.2.10 2.3.4 2.4.1).include? RUBY_VERSION
|
|
gem "stopgap_13632", "~> 1.0", :platforms => ["mri", "mingw", "x64_mingw"]
|
|
end
|
|
|
|
gem 'm'
|
|
gem "localhost", require: false
|