sendgrid-ruby 4.1.0 → 4.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -1
- data/README.md +1 -1
- data/lib/sendgrid/helpers/mail/mail.rb +2 -2
- data/lib/sendgrid/version.rb +1 -1
- data/test/sendgrid/test_sendgrid-ruby.rb +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: f39be2b634f5fb0d460ff9f75ff5058708cde4bf
|
4
|
+
data.tar.gz: 1142a07cbd221f64fc6c05f078ce56bc4cb60ca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0cda122625beed1d8d35d40ca59cd523138130e2196989af473dbefb607fe43eab95eb718049ca8c0c126f81363f9ccd307dd7d7ea3076eea8c6062d62d0986c
|
7
|
+
data.tar.gz: de3e1ec0dd7eb55b32a25ed2d04f2965415e4a16f90d2329693b65b430db1aff92684a3c6396f9e8a22f68c98ada1bccd7f06ae685989ac10a48d2b8eab2d567
|
data/CHANGELOG.md
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
-
## [4.1.
|
4
|
+
## [4.1.1] - 2016-4-6 ##
|
5
|
+
### Fixed
|
6
|
+
- #115 #134: Fix typos in initialize methods
|
7
|
+
- Thanks to [Ben Jackson](https://github.com/benjackson84) for the pull request!
|
8
|
+
|
9
|
+
## [4.1.0] - 2016-4-6 ##
|
5
10
|
### Add
|
6
11
|
- #144: Add [Inbound Email Parse Webhook](https://sendgrid.com/docs/API_Reference/Webhooks/inbound_email.html) support
|
7
12
|
- Thanks to [Wataru Sato](https://github.com/awwa) for the pull request!
|
data/README.md
CHANGED
@@ -164,7 +164,7 @@ Please see [our helper](https://github.com/sendgrid/sendgrid-ruby/tree/master/li
|
|
164
164
|
- [Library Usage Docs](https://github.com/sendgrid/sendgrid-ruby/tree/master/USAGE.md)
|
165
165
|
- [Example Code](https://github.com/sendgrid/sendgrid-ruby/tree/master/examples)
|
166
166
|
- [How-to: Migration from v2 to v3](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/how_to_migrate_from_v2_to_v3_mail_send.html)
|
167
|
-
- [v3 Web API Mail Send Helper](https://github.com/sendgrid/sendgrid-
|
167
|
+
- [v3 Web API Mail Send Helper](https://github.com/sendgrid/sendgrid-ruby/tree/master/lib/sendgrid/helpers/mail) - build a request object payload for a v3 /mail/send API call.
|
168
168
|
|
169
169
|
<a name="use_cases"></a>
|
170
170
|
# Use Cases
|
@@ -385,7 +385,7 @@ module SendGrid
|
|
385
385
|
end
|
386
386
|
|
387
387
|
class MailSettings
|
388
|
-
def
|
388
|
+
def initialize
|
389
389
|
@bcc = nil
|
390
390
|
@bypass_list_management = nil
|
391
391
|
@footer = nil
|
@@ -669,7 +669,7 @@ module SendGrid
|
|
669
669
|
end
|
670
670
|
|
671
671
|
class Personalization
|
672
|
-
def
|
672
|
+
def initialize
|
673
673
|
@tos = nil
|
674
674
|
@ccs = nil
|
675
675
|
@bccs = nil
|
data/lib/sendgrid/version.rb
CHANGED
@@ -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.1.
|
58
|
+
assert_equal("4.1.1", SendGrid::VERSION)
|
59
59
|
assert_instance_of(SendGrid::Client, sg.client)
|
60
60
|
end
|
61
61
|
|