sendgrid-ruby 6.0.0 → 6.0.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 +5 -5
- data/.travis.yml +20 -20
- data/CHANGELOG.md +13 -1
- data/LICENSE.txt +1 -1
- data/Makefile +7 -0
- data/TROUBLESHOOTING.md +1 -1
- data/lib/sendgrid/version.rb +1 -1
- data/test/sendgrid/test_sendgrid-ruby.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: e0eb9a46e4a360998faa1acfd1c4099a7239cc1c259dd5b20fb226695d141c22
|
|
4
|
+
data.tar.gz: 539ca585922aa194025a036e1e3f1b7857d415c0161019b6115820e7a432bc32
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d98ebe45a7a86771900dd39f9ec4e576999fe7b91be39fac31a0d0683c79f61b9060b942be9be4297e9e472345355ba98e7c1d9210a5d0e811bc98c4892c6a45
|
|
7
|
+
data.tar.gz: 527d3479ea0a6fe77954492f4e9015d30ea0c69ced16f6743e3582ef623b9a8e14f773becb02a1d934a261dc070aaf80f9312c20cbc1d72c8cae4820a316ee4a
|
data/.travis.yml
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
language: ruby
|
|
2
2
|
rvm:
|
|
3
|
-
-
|
|
4
|
-
- 2.
|
|
5
|
-
- 2.
|
|
3
|
+
- ruby-head
|
|
4
|
+
- 2.6
|
|
5
|
+
- 2.5
|
|
6
|
+
- 2.4
|
|
7
|
+
- jruby
|
|
6
8
|
gemfile:
|
|
7
9
|
- gemfiles/Sinatra_1.gemfile
|
|
8
10
|
- gemfiles/Sinatra_2.gemfile
|
|
@@ -10,20 +12,18 @@ before_script:
|
|
|
10
12
|
- mkdir prism
|
|
11
13
|
- mkdir prism/bin
|
|
12
14
|
- export PATH=$PATH:$PWD/prism/bin/
|
|
13
|
-
- ./test/prism.sh
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
- gem update bundler
|
|
29
|
-
|
|
15
|
+
- "./test/prism.sh"
|
|
16
|
+
install: make install
|
|
17
|
+
script: make test
|
|
18
|
+
matrix:
|
|
19
|
+
allow_failures:
|
|
20
|
+
- rvm: ruby-head
|
|
21
|
+
fast_finish: true
|
|
22
|
+
deploy:
|
|
23
|
+
provider: rubygems
|
|
24
|
+
api_key:
|
|
25
|
+
secure: CWlfN170i/fHPrIufHHLWQ0utjuhxf4ELSxKeypIuO2CNTqNMzocDAa2vxMt4XfO6d2wFPV/LC+IHR7i+sp7PKvjRoa4BLUUxjfBNDboc0gGESeUYlAxwsJo0tOVCNmpxgjQKqtPLz/19A/v/xpxLv2Im/9Idqa5ATd06sMDdM8=
|
|
26
|
+
gem: sendgrid-ruby
|
|
27
|
+
on:
|
|
28
|
+
tags: true
|
|
29
|
+
rvm: '2.4'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,19 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
All notable changes to this project will be documented in this file.
|
|
3
3
|
|
|
4
|
-
|
|
4
|
+
[2020-01-03] Version 6.0.1
|
|
5
|
+
--------------------------
|
|
6
|
+
**Library - Chore**
|
|
7
|
+
- [PR #400](https://github.com/sendgrid/sendgrid-ruby/pull/400): Add auto-deploy to travis.yml. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
8
|
+
- [PR #399](https://github.com/sendgrid/sendgrid-ruby/pull/399): Add testing to Makefile. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
9
|
+
- [PR #396](https://github.com/sendgrid/sendgrid-ruby/pull/396): Adding Makefile to assist with automation. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
|
|
10
|
+
|
|
11
|
+
**Library - Fix**
|
|
12
|
+
- [PR #321](https://github.com/sendgrid/sendgrid-ruby/pull/321): TROUBLESHOOTING.md broken link fix. Thanks to [@arshadkazmi42](https://github.com/arshadkazmi42)!
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
[2019-06-04] Version 6.0.0
|
|
16
|
+
--------------------------
|
|
5
17
|
### BREAKING CHANGE
|
|
6
18
|
- [PR #284](https://github.com/sendgrid/sendgrid-ruby/pull/284): The sinatra gem is no longer specified as a dependency of this gem. If you would like to use the inbound processing, please follow the [upgrade guide](https://github.com/sendgrid/sendgrid-ruby/blob/master/UPGRADE.md). Big thanks to [@jjb](https://github.com/jjb) for the PR!
|
|
7
19
|
|
data/LICENSE.txt
CHANGED
data/Makefile
ADDED
data/TROUBLESHOOTING.md
CHANGED
|
@@ -53,7 +53,7 @@ Click the "Clone or download" green button in [GitHub](https://github.com/sendgr
|
|
|
53
53
|
<a name="testing"></a>
|
|
54
54
|
## Testing v3 /mail/send Calls Directly
|
|
55
55
|
|
|
56
|
-
[Here](https://sendgrid.com/docs/
|
|
56
|
+
[Here](https://sendgrid.com/docs/for-developers/sending-email/curl-examples/) are some cURL examples for common use cases.
|
|
57
57
|
|
|
58
58
|
<a name="error"></a>
|
|
59
59
|
## Error Messages
|
data/lib/sendgrid/version.rb
CHANGED
|
@@ -58,7 +58,7 @@ class TestAPI < MiniTest::Test
|
|
|
58
58
|
assert_equal(test_headers, sg.request_headers)
|
|
59
59
|
assert_equal("v3", sg.version)
|
|
60
60
|
assert_equal(subuser, sg.impersonate_subuser)
|
|
61
|
-
assert_equal("6.0.
|
|
61
|
+
assert_equal("6.0.1", SendGrid::VERSION)
|
|
62
62
|
assert_instance_of(SendGrid::Client, sg.client)
|
|
63
63
|
end
|
|
64
64
|
|
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: 6.0.
|
|
4
|
+
version: 6.0.1
|
|
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: 2020-01-03 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: ruby_http_client
|
|
@@ -148,6 +148,7 @@ files:
|
|
|
148
148
|
- CONTRIBUTING.md
|
|
149
149
|
- Gemfile
|
|
150
150
|
- LICENSE.txt
|
|
151
|
+
- Makefile
|
|
151
152
|
- README.md
|
|
152
153
|
- Rakefile
|
|
153
154
|
- TROUBLESHOOTING.md
|
|
@@ -271,8 +272,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
271
272
|
- !ruby/object:Gem::Version
|
|
272
273
|
version: '0'
|
|
273
274
|
requirements: []
|
|
274
|
-
|
|
275
|
-
rubygems_version: 2.6.10
|
|
275
|
+
rubygems_version: 3.0.3
|
|
276
276
|
signing_key:
|
|
277
277
|
specification_version: 4
|
|
278
278
|
summary: Official Twilio SendGrid Gem
|