lhc-core-interceptors 2.1.0 → 2.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/README.md +5 -1
- data/lhc-core-interceptors.gemspec +2 -1
- data/lib/lhc-core-interceptors/version.rb +1 -1
- metadata +5 -18
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1a967e9c58513d9f17dd68b40145b8565c8fcda1
|
|
4
|
+
data.tar.gz: c28a928b398293f96b4c495e6d8e26d6824c2437
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2c5594f8edbab3f1322f1c3358fdac32aa4fa2386e80fa0f3c5ba42f1959e0840d6026c0ac09605bc684a7a33cbe5f9e85e6c295aba8c61d248dab8d36c1ca7
|
|
7
|
+
data.tar.gz: c5a6cb2c063d0657b7f4b389e07df9ed22c773a3ab3322200c0fdba768e8cee464c56edbd886ebc2b0680326b25cc4cd9ebbb2e3dedcb765c29a5c7d14689afb
|
data/README.md
CHANGED
|
@@ -112,7 +112,7 @@ Assuming the method `access_token` responds on runtime of the request with `1234
|
|
|
112
112
|
#### Basic Authentication
|
|
113
113
|
|
|
114
114
|
```ruby
|
|
115
|
-
LHC.get('http://local.ch', auth: { basic:
|
|
115
|
+
LHC.get('http://local.ch', auth: { basic: { username: 'steve', password: 'can' } })
|
|
116
116
|
```
|
|
117
117
|
|
|
118
118
|
Adds the following header to the request:
|
|
@@ -121,3 +121,7 @@ Adds the following header to the request:
|
|
|
121
121
|
```
|
|
122
122
|
|
|
123
123
|
Which is the base64 encoded credentials "username:password".
|
|
124
|
+
|
|
125
|
+
## License
|
|
126
|
+
|
|
127
|
+
[GNU Affero General Public License Version 3.](https://www.gnu.org/licenses/agpl-3.0.en.html)
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lhc-core-interceptors
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- local.ch
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-09-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: lhc
|
|
@@ -108,20 +108,6 @@ dependencies:
|
|
|
108
108
|
- - ">="
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
110
|
version: '0'
|
|
111
|
-
- !ruby/object:Gem::Dependency
|
|
112
|
-
name: ciderizer
|
|
113
|
-
requirement: !ruby/object:Gem::Requirement
|
|
114
|
-
requirements:
|
|
115
|
-
- - ">="
|
|
116
|
-
- !ruby/object:Gem::Version
|
|
117
|
-
version: '0'
|
|
118
|
-
type: :development
|
|
119
|
-
prerelease: false
|
|
120
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
121
|
-
requirements:
|
|
122
|
-
- - ">="
|
|
123
|
-
- !ruby/object:Gem::Version
|
|
124
|
-
version: '0'
|
|
125
111
|
description: A set of useful interceptors to use with LHC (like caching, monitoring
|
|
126
112
|
etc.)
|
|
127
113
|
email:
|
|
@@ -202,7 +188,8 @@ files:
|
|
|
202
188
|
- spec/spec_helper.rb
|
|
203
189
|
- spec/support/cleanup_configuration.rb
|
|
204
190
|
homepage: https://github.com/local-ch/lhc-core-interceptors
|
|
205
|
-
licenses:
|
|
191
|
+
licenses:
|
|
192
|
+
- GPL-3
|
|
206
193
|
metadata: {}
|
|
207
194
|
post_install_message:
|
|
208
195
|
rdoc_options: []
|
|
@@ -221,7 +208,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
221
208
|
requirements:
|
|
222
209
|
- Ruby >= 1.9.2
|
|
223
210
|
rubyforge_project:
|
|
224
|
-
rubygems_version: 2.
|
|
211
|
+
rubygems_version: 2.4.6
|
|
225
212
|
signing_key:
|
|
226
213
|
specification_version: 4
|
|
227
214
|
summary: A set of interceptors
|