Import Upstream version 2.2.6.4
parent
d2f77b21
Branches upstream/buster
Tags upstream/2.1.1
Showing
- .circleci/config.yml 0 additions, 107 deletions.circleci/config.yml
- .github/workflows/development.yml 35 additions, 0 deletions.github/workflows/development.yml
- .gitignore 1 addition, 0 deletions.gitignore
- .rubocop.yml 10 additions, 1 deletion.rubocop.yml
- CHANGELOG.md 664 additions, 6 deletionsCHANGELOG.md
- CONTRIBUTING.md 136 additions, 0 deletionsCONTRIBUTING.md
- Gemfile 7 additions, 2 deletionsGemfile
- README.rdoc 100 additions, 42 deletionsREADME.rdoc
- Rakefile 14 additions, 7 deletionsRakefile
- SECURITY_POLICY.md 7 additions, 7 deletionsSECURITY_POLICY.md
- SPEC.rdoc 26 additions, 1 deletionSPEC.rdoc
- lib/rack.rb 7 additions, 16 deletionslib/rack.rb
- lib/rack/auth/abstract/request.rb 0 additions, 2 deletionslib/rack/auth/abstract/request.rb
- lib/rack/auth/basic.rb 3 additions, 3 deletionslib/rack/auth/basic.rb
- lib/rack/auth/digest/md5.rb 4 additions, 4 deletionslib/rack/auth/digest/md5.rb
- lib/rack/auth/digest/request.rb 3 additions, 3 deletionslib/rack/auth/digest/request.rb
- lib/rack/body_proxy.rb 13 additions, 9 deletionslib/rack/body_proxy.rb
- lib/rack/builder.rb 77 additions, 8 deletionslib/rack/builder.rb
- lib/rack/cascade.rb 23 additions, 8 deletionslib/rack/cascade.rb
- lib/rack/chunked.rb 48 additions, 23 deletionslib/rack/chunked.rb
.circleci/config.yml
deleted
100644 → 0
.github/workflows/development.yml
0 → 100644
This diff is collapsed.
CONTRIBUTING.md
0 → 100644
... | ... | @@ -7,12 +7,17 @@ gemspec |
# What we need to do here is just *exclude* JRuby, but bundler has no way to do | ||
# this, because of some argument that I know I had with Yehuda and Carl years | ||
# ago, but I've since forgotten. Anyway, we actually need it here, and it's not | ||
# avaialable, so prepare yourself for a yak shave when this breaks. | ||
# available, so prepare yourself for a yak shave when this breaks. | ||
c_platforms = Bundler::Dsl::VALID_PLATFORMS.dup.delete_if do |platform| | ||
platform =~ /jruby/ | ||
end | ||
gem "rubocop", "0.68.1", require: false | ||
gem "rubocop", require: false | ||
group :test do | ||
gem "webrick" # gemified in Ruby 3.1+ | ||
gem "psych" | ||
end | ||
# Alternative solution that might work, but it has bad interactions with | ||
# Gemfile.lock if that gets committed/reused: | ||
... | ... |
Please register or sign in to comment