Import Debian changes 3.0.8-4
Branches upstream/buster
Tags upstream/2.1.1
Pipeline #878764 failed
Stage: build-env
Stage: license scan
Stage: build
Stage: upload
Stage: OBS
Stage: obs-capture
Stage: cleanup
Showing
- .editorconfig 8 additions, 0 deletions.editorconfig
- .github/dependabot.yml 6 additions, 0 deletions.github/dependabot.yml
- .github/workflows/depsreview.yaml 14 additions, 0 deletions.github/workflows/depsreview.yaml
- .github/workflows/development.yml 0 additions, 35 deletions.github/workflows/development.yml
- .github/workflows/test-external.yaml 28 additions, 0 deletions.github/workflows/test-external.yaml
- .github/workflows/test.yaml 38 additions, 0 deletions.github/workflows/test.yaml
- .rubocop.yml 8 additions, 2 deletions.rubocop.yml
- .yardopts 1 addition, 1 deletion.yardopts
- CHANGELOG.md 205 additions, 80 deletionsCHANGELOG.md
- CONTRIBUTING.md 53 additions, 47 deletionsCONTRIBUTING.md
- Gemfile 9 additions, 22 deletionsGemfile
- MIT-LICENSE 1 addition, 1 deletionMIT-LICENSE
- README.md 309 additions, 0 deletionsREADME.md
- README.rdoc 0 additions, 320 deletionsREADME.rdoc
- Rakefile 17 additions, 11 deletionsRakefile
- SECURITY.md 7 additions, 7 deletionsSECURITY.md
- SPEC.rdoc 183 additions, 131 deletionsSPEC.rdoc
- UPGRADE-GUIDE.md 328 additions, 0 deletionsUPGRADE-GUIDE.md
- bin/rackup 0 additions, 5 deletionsbin/rackup
- config/external.yaml 3 additions, 0 deletionsconfig/external.yaml
.editorconfig
0 → 100644
.github/dependabot.yml
0 → 100644
.github/workflows/depsreview.yaml
0 → 100644
.github/workflows/development.yml
deleted
100644 → 0
.github/workflows/test-external.yaml
0 → 100644
.github/workflows/test.yaml
0 → 100644
This diff is collapsed.
... | ... | @@ -4,31 +4,18 @@ source 'https://rubygems.org' |
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 | ||
# 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", require: false | ||
gem "webrick" | ||
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: | ||
# c_platforms = [:mri] if Gem.platforms.last.os == "java" | ||
group :extra do | ||
gem 'fcgi', platforms: c_platforms | ||
gem 'dalli' | ||
gem 'thin', platforms: c_platforms | ||
group :maintenance, optional: true do | ||
gem "rubocop", require: false | ||
gem "rubocop-packaging", require: false | ||
end | ||
group :doc do | ||
gem 'rdoc' | ||
end | ||
group :test do | ||
gem 'minitest' | ||
gem 'bake-test-external', '~> 0.1.3' | ||
end |
README.md
0 → 100644
README.rdoc
deleted
100644 → 0
UPGRADE-GUIDE.md
0 → 100644
bin/rackup
deleted
100755 → 0
config/external.yaml
0 → 100644
Please register or sign in to comment