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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4935426058ea7d1c14f61020231f4260b12a8ef8
4
- data.tar.gz: 5d52f19f64ace9e2cc1f66ed13e97087138ddbdf
3
+ metadata.gz: f39be2b634f5fb0d460ff9f75ff5058708cde4bf
4
+ data.tar.gz: 1142a07cbd221f64fc6c05f078ce56bc4cb60ca3
5
5
  SHA512:
6
- metadata.gz: 9a2681e049f3ef54cc5d322c6854edfbae48ed8a3b797b1e9f71dbc0b40ddb961156dcda684b19287aae71ac52c0df0700c0a85f5a6f87dc74a56ef9a99af759
7
- data.tar.gz: dd6e20dc8672654f467f152a357a56b2e8ac6545d0db35df7565076577514376fd422594c3c2adcbaf254a4fdf55a3c768148cd112eb36d0ff75af9c471d7bc9
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.0] - 2016-2-17 ##
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-python/tree/master/sendgrid/helpers/mail) - build a request object payload for a v3 /mail/send API call.
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 initilize
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 initilize
672
+ def initialize
673
673
  @tos = nil
674
674
  @ccs = nil
675
675
  @bccs = nil
@@ -1,3 +1,3 @@
1
1
  module SendGrid
2
- VERSION = '4.1.0'
2
+ VERSION = '4.1.1'
3
3
  end
@@ -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.0", SendGrid::VERSION)
58
+ assert_equal("4.1.1", 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.1.0
4
+ version: 4.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elmer Thomas