ruby_http_client 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/CHANGELOG.md +4 -0
- data/lib/ruby_http_client.rb +2 -0
- data/ruby_http_client.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: af7a6c1d4e4b153fb61568db42e47b8e9dbe6e52
|
4
|
+
data.tar.gz: d35dd928c20db5e91efc355bb7a879d8d9c62ae5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 046bec101d9e671703237f289a8678f8a663b94386642224eccb72f4d20792d25e17d7200fa806405c5f72d45ba96db53d39e2224e7d702c2b91bac3348f7a65
|
7
|
+
data.tar.gz: 11c725414d38c767f6d52b01cfd4f19e3b2ce414c0b14208ef329b928010fc339ea023b7e803c54b76498aae28c60e786d5480ad820ac58b03ec6d68fcd90603
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,10 @@ 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
|
+
## [2.1.1] - 2016-06-10
|
7
|
+
### Fix
|
8
|
+
- Deal with an edge case where when you send a POST with no body, net/http sets the content type to application/x-www-form-urlencoded
|
9
|
+
|
6
10
|
## [2.1.0] - 2016-06-10
|
7
11
|
### Added
|
8
12
|
- Automatically add Content-Type: application/json when there is a request body
|
data/lib/ruby_http_client.rb
CHANGED
@@ -150,6 +150,8 @@ module SendGrid
|
|
150
150
|
request.body = @request_body.to_json if @request_body
|
151
151
|
if request.body
|
152
152
|
request['Content-Type'] = 'application/json'
|
153
|
+
elsif !request.body and (name = "post")
|
154
|
+
request['Content-Type'] = ''
|
153
155
|
end
|
154
156
|
make_request(http, request)
|
155
157
|
end
|
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 = '2.1.
|
7
|
+
spec.version = '2.1.1'
|
8
8
|
spec.authors = ['Elmer Thomas']
|
9
9
|
spec.email = 'dx@sendgrid.com'
|
10
10
|
spec.summary = 'A simple REST client'
|