sendgrid-ruby 4.3.2 → 4.3.3
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 +6 -0
- data/README.md +1 -1
- data/lib/sendgrid/version.rb +1 -1
- data/sendgrid-ruby.gemspec +3 -0
- data/test/sendgrid/test_sendgrid-ruby.rb +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: 83955f77f1e93c80a05e5d032940419529128ba7
|
|
4
|
+
data.tar.gz: d901ce541307f08ac44a499dc846aa14dbd30b50
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c4b15198a85c4a7699322963b53e431ed4f1b2603884542a1155a078791565ba319c359ec67f8babd52d70f3680231c3b711d1df398eddcf993b32c3709ba0ba
|
|
7
|
+
data.tar.gz: c2a8deff3ed44c3e994690dffc5c473330abbf60712c7db16fdab8c5e8995c20d3efd2077152ca59cb84be19aed3f54ac95e07b3a4fc895c2db3486f7802d9ec
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
+
## [4.3.3] - 2017-5-2
|
|
5
|
+
### Update
|
|
6
|
+
- #157: Specify required ruby version as '>= 2.2'
|
|
7
|
+
- This library does not support [Ruby 2.1 or below](https://www.ruby-lang.org/en/news/2017/04/01/support-of-ruby-2-1-has-ended/).
|
|
8
|
+
- Thanks to [Ryunosuke Sato](https://github.com/tricknotes) for the pull request!
|
|
9
|
+
|
|
4
10
|
## [4.3.2] - 2017-5-1 ##
|
|
5
11
|
### Fixes
|
|
6
12
|
- #161: Fixed problematic Sinatra dependency
|
data/README.md
CHANGED
|
@@ -30,7 +30,7 @@ We appreciate your continued support, thank you!
|
|
|
30
30
|
|
|
31
31
|
## Prerequisites
|
|
32
32
|
|
|
33
|
-
- Ruby version 2.2
|
|
33
|
+
- Ruby version >= 2.2
|
|
34
34
|
- The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=sendgrid-ruby)
|
|
35
35
|
|
|
36
36
|
## Setup Environment Variables
|
data/lib/sendgrid/version.rb
CHANGED
data/sendgrid-ruby.gemspec
CHANGED
|
@@ -11,6 +11,9 @@ Gem::Specification.new do |spec|
|
|
|
11
11
|
spec.summary = 'Official SendGrid Gem'
|
|
12
12
|
spec.description = 'Official SendGrid Gem to Interact with SendGrids API in native Ruby'
|
|
13
13
|
spec.homepage = 'http://github.com/sendgrid/sendgrid-ruby'
|
|
14
|
+
|
|
15
|
+
spec.required_ruby_version = '>= 2.2'
|
|
16
|
+
|
|
14
17
|
spec.license = 'MIT'
|
|
15
18
|
spec.files = `git ls-files -z`.split("\x0")
|
|
16
19
|
spec.executables = spec.files.grep(/^bin/) { |f| File.basename(f) }
|
|
@@ -55,7 +55,7 @@ class TestAPI < MiniTest::Test
|
|
|
55
55
|
')
|
|
56
56
|
assert_equal(test_headers, sg.request_headers)
|
|
57
57
|
assert_equal("v3", sg.version)
|
|
58
|
-
assert_equal("4.3.
|
|
58
|
+
assert_equal("4.3.3", SendGrid::VERSION)
|
|
59
59
|
assert_instance_of(SendGrid::Client, sg.client)
|
|
60
60
|
end
|
|
61
61
|
|
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.3.
|
|
4
|
+
version: 4.3.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Elmer Thomas
|
|
@@ -205,7 +205,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
205
205
|
requirements:
|
|
206
206
|
- - ">="
|
|
207
207
|
- !ruby/object:Gem::Version
|
|
208
|
-
version: '
|
|
208
|
+
version: '2.2'
|
|
209
209
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
210
210
|
requirements:
|
|
211
211
|
- - ">="
|