butler-http 0.1.0 → 0.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +7 -0
- data/README.md +3 -3
- data/lib/butler/http.rb +1 -0
- data/lib/butler/version.rb +1 -1
- metadata +2 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 6ecf83403f9b02b0164c16210c728e5fe96bd071bdd35a498d481c8956e5d63c
|
|
4
|
+
data.tar.gz: 1624f87cf1296c6b641ed2594875ce0eaba8b2d80e81fe5b2065995528a270b3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0e052d6b126eec0b91f80b27c6a9c7a0897b78c5c513851c80e24021de5c70ba3d7efdd0e69ceb4f3c2d79a87a3455a2b21bc4480b2a5b35e63b49319828ac57
|
|
7
|
+
data.tar.gz: 628766bc50e91954b426f0d029d4babdb5083e2c2dfac629eee76be2dc824d7989f17e2b2808913ae7f8cc9410b7a47995129d23920c27cd6ed6ec703bf8d0dd
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,13 @@ All notable changes to this project are documented here. Format loosely follows
|
|
|
4
4
|
[Keep a Changelog](https://keepachangelog.com/); this project doesn't yet follow strict semver
|
|
5
5
|
(pre-1.0 — see [README's "What's not here yet"](README.md#whats-not-here-yet)).
|
|
6
6
|
|
|
7
|
+
## 0.1.1
|
|
8
|
+
|
|
9
|
+
- Added `lib/butler/http.rb` (requiring `lib/butler.rb`) so `gem "butler-http"` works with Bundler's
|
|
10
|
+
default require-name inference. Without it, `Bundler.require` tries `require "butler/http"`
|
|
11
|
+
(hyphen → slash) and raises `LoadError`/`NameError: uninitialized constant ...::Butler` at runtime
|
|
12
|
+
for anyone who didn't know to add `require: "butler"` to their Gemfile line.
|
|
13
|
+
|
|
7
14
|
## 0.1.0
|
|
8
15
|
|
|
9
16
|
Initial Fiber-native rearchitecture, replacing an earlier `Net::HTTP`-based implementation.
|
data/README.md
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
### Modern HTTP for modern Ruby.
|
|
4
4
|
|
|
5
|
-
[](https://rubygems.org/gems/butler-http)
|
|
6
|
-

|
|
7
|
-

|
|
5
|
+
[](https://rubygems.org/gems/butler-http)
|
|
6
|
+

|
|
7
|
+

|
|
8
8
|
|
|
9
9
|
**Fiber-native concurrency, HTTP/1.1 + HTTP/2, and production-grade
|
|
10
10
|
resilience in one Ruby HTTP client** — transparent ALPN negotiation,
|
data/lib/butler/http.rb
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require_relative "../butler"
|
data/lib/butler/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: butler-http
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ram Laxman Yadav
|
|
@@ -118,6 +118,7 @@ files:
|
|
|
118
118
|
- lib/butler/connection_pool.rb
|
|
119
119
|
- lib/butler/errors.rb
|
|
120
120
|
- lib/butler/headers.rb
|
|
121
|
+
- lib/butler/http.rb
|
|
121
122
|
- lib/butler/pipeline/chain.rb
|
|
122
123
|
- lib/butler/pipeline/context.rb
|
|
123
124
|
- lib/butler/pipeline/middleware.rb
|