mirror of
https://github.com/puma/puma.git
synced 2022-11-09 13:48:40 -05:00
Remove remaining Hoe stuff, replace with Bundler.
This commit is contained in:
parent
e6c268d3e9
commit
63946d17a5
5 changed files with 7 additions and 96 deletions
12
.hoeignore
12
.hoeignore
|
@ -1,12 +0,0 @@
|
||||||
.hoeignore
|
|
||||||
.gitignore
|
|
||||||
.travis.yml
|
|
||||||
.git/
|
|
||||||
t/
|
|
||||||
tmp/
|
|
||||||
scratch/
|
|
||||||
test/
|
|
||||||
examples/
|
|
||||||
Gemfile.lock
|
|
||||||
*.jar
|
|
||||||
*.bundle
|
|
78
Manifest.txt
78
Manifest.txt
|
@ -1,78 +0,0 @@
|
||||||
.github/issue_template.md
|
|
||||||
DEPLOYMENT.md
|
|
||||||
Gemfile
|
|
||||||
History.md
|
|
||||||
LICENSE
|
|
||||||
Manifest.txt
|
|
||||||
README.md
|
|
||||||
Rakefile
|
|
||||||
Release.md
|
|
||||||
bin/puma
|
|
||||||
bin/puma-wild
|
|
||||||
bin/pumactl
|
|
||||||
docs/nginx.md
|
|
||||||
docs/signals.md
|
|
||||||
docs/systemd.md
|
|
||||||
ext/puma_http11/PumaHttp11Service.java
|
|
||||||
ext/puma_http11/ext_help.h
|
|
||||||
ext/puma_http11/extconf.rb
|
|
||||||
ext/puma_http11/http11_parser.c
|
|
||||||
ext/puma_http11/http11_parser.h
|
|
||||||
ext/puma_http11/http11_parser.java.rl
|
|
||||||
ext/puma_http11/http11_parser.rl
|
|
||||||
ext/puma_http11/http11_parser_common.rl
|
|
||||||
ext/puma_http11/io_buffer.c
|
|
||||||
ext/puma_http11/mini_ssl.c
|
|
||||||
ext/puma_http11/org/jruby/puma/Http11.java
|
|
||||||
ext/puma_http11/org/jruby/puma/Http11Parser.java
|
|
||||||
ext/puma_http11/org/jruby/puma/MiniSSL.java
|
|
||||||
ext/puma_http11/puma_http11.c
|
|
||||||
gemfiles/2.1-Gemfile
|
|
||||||
lib/puma.rb
|
|
||||||
lib/puma/accept_nonblock.rb
|
|
||||||
lib/puma/app/status.rb
|
|
||||||
lib/puma/binder.rb
|
|
||||||
lib/puma/cli.rb
|
|
||||||
lib/puma/client.rb
|
|
||||||
lib/puma/cluster.rb
|
|
||||||
lib/puma/commonlogger.rb
|
|
||||||
lib/puma/compat.rb
|
|
||||||
lib/puma/configuration.rb
|
|
||||||
lib/puma/const.rb
|
|
||||||
lib/puma/control_cli.rb
|
|
||||||
lib/puma/convenient.rb
|
|
||||||
lib/puma/daemon_ext.rb
|
|
||||||
lib/puma/delegation.rb
|
|
||||||
lib/puma/detect.rb
|
|
||||||
lib/puma/dsl.rb
|
|
||||||
lib/puma/events.rb
|
|
||||||
lib/puma/io_buffer.rb
|
|
||||||
lib/puma/java_io_buffer.rb
|
|
||||||
lib/puma/jruby_restart.rb
|
|
||||||
lib/puma/launcher.rb
|
|
||||||
lib/puma/minissl.rb
|
|
||||||
lib/puma/null_io.rb
|
|
||||||
lib/puma/plugin.rb
|
|
||||||
lib/puma/plugin/tmp_restart.rb
|
|
||||||
lib/puma/rack/backports/uri/common_193.rb
|
|
||||||
lib/puma/rack/builder.rb
|
|
||||||
lib/puma/rack/urlmap.rb
|
|
||||||
lib/puma/rack_default.rb
|
|
||||||
lib/puma/reactor.rb
|
|
||||||
lib/puma/runner.rb
|
|
||||||
lib/puma/server.rb
|
|
||||||
lib/puma/single.rb
|
|
||||||
lib/puma/state_file.rb
|
|
||||||
lib/puma/tcp_logger.rb
|
|
||||||
lib/puma/thread_pool.rb
|
|
||||||
lib/puma/util.rb
|
|
||||||
lib/rack/handler/puma.rb
|
|
||||||
puma.gemspec
|
|
||||||
tools/jungle/README.md
|
|
||||||
tools/jungle/init.d/README.md
|
|
||||||
tools/jungle/init.d/puma
|
|
||||||
tools/jungle/init.d/run-puma
|
|
||||||
tools/jungle/upstart/README.md
|
|
||||||
tools/jungle/upstart/puma-manager.conf
|
|
||||||
tools/jungle/upstart/puma.conf
|
|
||||||
tools/trickletest.rb
|
|
5
Rakefile
5
Rakefile
|
@ -4,6 +4,11 @@ require "rake/extensiontask"
|
||||||
require "rake/javaextensiontask"
|
require "rake/javaextensiontask"
|
||||||
require "rubocop/rake_task"
|
require "rubocop/rake_task"
|
||||||
require 'puma/detect'
|
require 'puma/detect'
|
||||||
|
require 'rubygems/package_task'
|
||||||
|
require 'bundler/gem_tasks'
|
||||||
|
|
||||||
|
gemspec = Gem::Specification.load(Dir['*.gemspec'].first)
|
||||||
|
Gem::PackageTask.new(gemspec).define
|
||||||
|
|
||||||
# Add rubocop task
|
# Add rubocop task
|
||||||
RuboCop::RakeTask.new
|
RuboCop::RakeTask.new
|
||||||
|
|
|
@ -1,9 +1,8 @@
|
||||||
# Release process
|
# Release process
|
||||||
|
|
||||||
Using "3.7.1" as a version string example.
|
Using "3.7.1" as a version example.
|
||||||
|
|
||||||
1. `be rake release_sanity VERSION=3.7.1`
|
2. `be rake package && be rake release`
|
||||||
2. `be rake release VERSION=3.7.1`
|
|
||||||
3. Switch to latest JRuby version
|
3. Switch to latest JRuby version
|
||||||
4. `rake java gem`
|
4. `rake java gem`
|
||||||
5. `gem push pkg/puma-3.7.1-java.gem`
|
5. `gem push pkg/puma-3.7.1-java.gem`
|
||||||
|
|
|
@ -2,9 +2,6 @@ source "https://rubygems.org"
|
||||||
|
|
||||||
gemspec path: ".."
|
gemspec path: ".."
|
||||||
|
|
||||||
gem "hoe"
|
|
||||||
gem "hoe-git"
|
|
||||||
gem "hoe-ignore"
|
|
||||||
gem "rdoc"
|
gem "rdoc"
|
||||||
gem "rake-compiler"
|
gem "rake-compiler"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue