sendgrid-ruby 4.0.6 → 4.0.7
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 -1
- data/lib/sendgrid/version.rb +1 -1
- data/sendgrid-ruby.gemspec +1 -1
- data/test/sendgrid/test_sendgrid-ruby.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 9843482338c61a87550111fdaf99d40961aa31eb
|
|
4
|
+
data.tar.gz: e64700784ea090cb52408d6537159a61f395e615
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4eb9d201e5ed811d60561047a25ea90c4768f4180be49c0b496372e9fcc4d53c83a46e60175c01cec8c7ba79397ad803e3b5faeba26369b0119b701a30a166cf
|
|
7
|
+
data.tar.gz: c3b4371bc2ef5a1c5f4456ee9c68966cc52222dfde9bdea8728ae6d2c1b21f1e3c7ac23c88d41acef924a783cdc36f51350fe2d5cedf5c5ec83d0b15820298ac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,13 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
## [4.0.
|
|
4
|
+
## [4.0.7] - 2016-1-25 ##
|
|
5
|
+
### Fixes
|
|
6
|
+
- [Pull Request #7](https://github.com/sendgrid/ruby-http-client/pull/7)
|
|
7
|
+
- Fixes [issue #6](https://github.com/sendgrid/ruby-http-client/issues/6): TLS certificates not verified
|
|
8
|
+
- Thanks to [Koen Rouwhorst](https://github.com/koenrh) for the pull request!
|
|
9
|
+
|
|
10
|
+
## [4.0.6] - 2016-10-18 ##
|
|
5
11
|
### Added
|
|
6
12
|
- Pull #113: Fix Travis CI Prism functionality for non-SendGrid contributors, update deprecated File.exists
|
|
7
13
|
|
data/lib/sendgrid/version.rb
CHANGED
data/sendgrid-ruby.gemspec
CHANGED
|
@@ -17,7 +17,7 @@ Gem::Specification.new do |spec|
|
|
|
17
17
|
spec.test_files = spec.files.grep(/^(test|spec|features)/)
|
|
18
18
|
spec.require_paths = ['lib']
|
|
19
19
|
|
|
20
|
-
spec.add_dependency 'ruby_http_client', '~> 3.0.
|
|
20
|
+
spec.add_dependency 'ruby_http_client', '~> 3.0.1'
|
|
21
21
|
spec.add_development_dependency 'rake', '~> 0'
|
|
22
22
|
spec.add_development_dependency 'minitest'
|
|
23
23
|
end
|
|
@@ -53,7 +53,7 @@ class TestAPI < MiniTest::Test
|
|
|
53
53
|
')
|
|
54
54
|
assert_equal(test_headers, sg.request_headers)
|
|
55
55
|
assert_equal("v3", sg.version)
|
|
56
|
-
assert_equal("4.0.
|
|
56
|
+
assert_equal("4.0.7", SendGrid::VERSION)
|
|
57
57
|
assert_instance_of(SendGrid::Client, sg.client)
|
|
58
58
|
end
|
|
59
59
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sendgrid-ruby
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 4.0.
|
|
4
|
+
version: 4.0.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elmer Thomas
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date:
|
|
13
|
+
date: 2017-01-25 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ruby_http_client
|
|
@@ -18,14 +18,14 @@ dependencies:
|
|
|
18
18
|
requirements:
|
|
19
19
|
- - "~>"
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.0.
|
|
21
|
+
version: 3.0.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
25
25
|
requirements:
|
|
26
26
|
- - "~>"
|
|
27
27
|
- !ruby/object:Gem::Version
|
|
28
|
-
version: 3.0.
|
|
28
|
+
version: 3.0.1
|
|
29
29
|
- !ruby/object:Gem::Dependency
|
|
30
30
|
name: rake
|
|
31
31
|
requirement: !ruby/object:Gem::Requirement
|