ruby_http_client 3.1.0 → 3.2.0
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/.travis.yml +2 -0
- data/CHANGELOG.md +5 -0
- data/lib/ruby_http_client.rb +6 -0
- data/ruby_http_client.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fd2bae5a62b790be5bb8dcd0a4f6935ba6a492b0
|
4
|
+
data.tar.gz: 0400770eb4b4b3f921ad7450923ac1a5af91e369
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e5adcab6dc4beeb623159e1facafba66e96933e82d069b413990299c719ede148eb49a33426c76972a148d53f05d23a865c48ce890264950643d8d2d97987ecd
|
7
|
+
data.tar.gz: a371df8050251e72ac056b3580ddb9084301ce5a6c045476e1b8f6ffde64a47deed14384d32e86314f9380010cd13cd69c6447b848d2255b7eea135c571ae0fc
|
data/.travis.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,11 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
## [3.2.0] - 2017-09-01
|
7
|
+
### Added
|
8
|
+
- #12 Add a helper returns the response body as a hash
|
9
|
+
- Thanks to [Diego Camargo](https://github.com/belfazt) for the pull request!
|
10
|
+
|
6
11
|
## [3.1.0] - 2016-04-10
|
7
12
|
### Added
|
8
13
|
- #5 Ability to set the Content-Type header
|
data/lib/ruby_http_client.rb
CHANGED
data/ruby_http_client.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'ruby_http_client'
|
7
|
-
spec.version = '3.
|
7
|
+
spec.version = '3.2.0'
|
8
8
|
spec.authors = ['Elmer Thomas']
|
9
9
|
spec.email = 'dx@sendgrid.com'
|
10
10
|
spec.summary = 'A simple REST client'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby_http_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.
|
4
|
+
version: 3.2.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Elmer Thomas
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2017-
|
11
|
+
date: 2017-09-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|