aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.md44
-rw-r--r--lib/plum/version.rb2
2 files changed, 34 insertions, 12 deletions
diff --git a/README.md b/README.md
index 9d26607..da8cacd 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,5 @@
# Plum: An HTTP/2 Library for Ruby
+
A pure Ruby HTTP/2 server and client implementation.
WARNING: Plum is currently under heavy development. You *will* encounter bugs when using it.
@@ -9,18 +10,24 @@ WARNING: Plum is currently under heavy development. You *will* encounter bugs wh
## Requirements
* Ruby 2.3
-* OpenSSL 1.0.2 or newer (HTTP/2 requires ALPN)
-* Optional:
- * [http_parser.rb gem](https://rubygems.org/gems/http_parser.rb) (HTTP/1.x parser; if you use "http" URI scheme)
- * [rack gem](https://rubygems.org/gems/rack) (if you use Plum as Rack server)
+* OpenSSL 1.0.2 or newer
+* [http_parser.rb gem](https://rubygems.org/gems/http_parser.rb) - if you need HTTP/2 without TLS or HTTP/1.1 support
+* [rack gem](https://rubygems.org/gems/rack) - if you use plum as a Rack server
## Installation
+You can install via rubygems:
+
~~~sh
gem install plum
~~~
+then require it:
+
+~~~ruby
+require "plum"
+~~~
## Usage
@@ -53,9 +60,12 @@ You can run it:
NOTE: If `--cert` and `--key` are omitted, a temporary dummy certificate will be generated.
+My website [https://rhe.jp](https://rhe.jp) is using plum as a Rack server.
+
### As a HTTP/2 (HTTP/1.x) client library
-If the server does't support HTTP/2, `Plum::Client` tries to use HTTP/1.x instead.
+
+If the server doesn't support HTTP/2, it falls back to HTTP/1.1 seamlessly.
~~~
+-----------------+
@@ -83,6 +93,14 @@ puts res1.body # => "..."
res2 = client.post("/post", "data").join
puts res2.body # => "..."
+client.get("/clockstream").on_headers { |res|
+ puts "status: #{res.status}, headers: #{res.headers}"
+}.on_chunk { |chunk|
+ puts chunk
+}.on_finish {
+ puts "finish!"
+}.join
+
client.close
~~~
@@ -104,6 +122,7 @@ p res1.status # => "200"
##### Download a large file
~~~ruby
+# the value of hostname option will be used in SNI and :authority header
Plum::Client.start("http2.rhe.jp", 443, hostname: "assets.rhe.jp") { |client|
client.get("/large") do |res| # called when received response headers
p res.status # => "200"
@@ -119,12 +138,15 @@ Plum::Client.start("http2.rhe.jp", 443, hostname: "assets.rhe.jp") { |client|
## TODO
-* **Better API**
-* Plum::Client
- * PING frame handling
- * Server Push support
- * Stream Priority support
- * Better HTTP/1.x support
+* Better API design
+* Better server push support
+* Stream priority support
+
+Of course ideas and pull requests are welcome.
+
+## Hacking
+
+Clone this Git repository and run `bundle install` to install development dependencies. You can run test with `rake test`. The tests are written with Minitest.
## License
diff --git a/lib/plum/version.rb b/lib/plum/version.rb
index 079ae47..1ba7997 100644
--- a/lib/plum/version.rb
+++ b/lib/plum/version.rb
@@ -1,5 +1,5 @@
# frozen-string-literal: true
module Plum
- VERSION = "0.2.10"
+ VERSION = "0.3.0"
end