sendgrid-ruby 4.2.1 → 4.3.0

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fa96169cc44e5fb39cdca6ace9068eeaf1507a31
4
- data.tar.gz: 84ea1b9e3722f373365442037c687174c05ca8dd
3
+ metadata.gz: b10b6641b622b28d8cf45996bfdf23168228c0bc
4
+ data.tar.gz: 3dcc5c040fa1b80f0373f0971640e1f25b48cb70
5
5
  SHA512:
6
- metadata.gz: 2ebc4e11927ca3c4c390d308ecff64d0715bc4b8f44f8279f95dbfefeed87868d0564636cd2ac589ddd66dd1825b035a048091a37c57d2979b81af7f847f147f
7
- data.tar.gz: d5b03fa220e930be7500d2524916197f6a91d1b827d23c1f2fc976be391c59eb1611ec6c2d7441410f715f3fc4a1ea9ae11bad5472f944dd41afd72eec09a2f9
6
+ metadata.gz: de2d4c4e5a036af2b24eee9158b091562372c523d6deada337c97e561b8771afa8069245a7188148e010b38febcbc65512d850e3ee9010639351dabad7bf31df
7
+ data.tar.gz: 939366e0c87fada6692872757c26a5721747fb00923a2f889a8cfaa8aaf04656c83dc66ec6d16fa9109d5dfba90513a13c3bfec510bcab4bf3a336c8bd1a7430
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.0] - 2016-4-17 ##
5
+ ### Added
6
+ - #70: Adds an account settings management helper object
7
+ - See the [helper README](https://github.com/sendgrid/sendgrid-ruby/tree/master/lib/sendgrid/helpers/settings) for details
8
+ - Thanks to [Kyle Kern](https://github.com/kernkw) for the pull request!
9
+
4
10
  ## [4.2.1] - 2016-4-10 ##
5
11
  ### Fixed
6
12
  - #112: Fixes version ambiguity in gemspec
data/README.md CHANGED
@@ -17,6 +17,7 @@ We appreciate your continued support, thank you!
17
17
  * [Installation](#installation)
18
18
  * [Quick Start](#quick_start)
19
19
  * [Processing Inbound Email](#inbound)
20
+ * [Account Setting Management](#account)
20
21
  * [Usage](#usage)
21
22
  * [Use Cases](#use_cases)
22
23
  * [Announcements](#announcements)
@@ -157,6 +158,11 @@ puts response.headers
157
158
 
158
159
  Please see [our helper](https://github.com/sendgrid/sendgrid-ruby/tree/master/lib/sendgrid/helpers/inbound) for utilizing our Inbound Parse webhook.
159
160
 
161
+ <a name="account"></a>
162
+ # Account Setting Management
163
+
164
+ Please see [our helper](https://github.com/sendgrid/sendgrid-ruby/tree/master/lib/sendgrid/helpers/settings) for updating account settings.
165
+
160
166
  <a name="usage"></a>
161
167
  # Usage
162
168
 
@@ -1,3 +1,3 @@
1
1
  module SendGrid
2
- VERSION = '4.2.1'
2
+ VERSION = '4.3.0'
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.2.1", SendGrid::VERSION)
58
+ assert_equal("4.3.0", 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.2.1
4
+ version: 4.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elmer Thomas
@@ -10,62 +10,62 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2017-04-11 00:00:00.000000000 Z
13
+ date: 2017-04-17 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby_http_client
17
17
  requirement: !ruby/object:Gem::Requirement
18
18
  requirements:
19
- - - ~>
19
+ - - "~>"
20
20
  - !ruby/object:Gem::Version
21
21
  version: '3.0'
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
28
  version: '3.0'
29
29
  - !ruby/object:Gem::Dependency
30
30
  name: sinatra
31
31
  requirement: !ruby/object:Gem::Requirement
32
32
  requirements:
33
- - - ~>
33
+ - - "~>"
34
34
  - !ruby/object:Gem::Version
35
35
  version: 1.4.7
36
36
  type: :runtime
37
37
  prerelease: false
38
38
  version_requirements: !ruby/object:Gem::Requirement
39
39
  requirements:
40
- - - ~>
40
+ - - "~>"
41
41
  - !ruby/object:Gem::Version
42
42
  version: 1.4.7
43
43
  - !ruby/object:Gem::Dependency
44
44
  name: rake
45
45
  requirement: !ruby/object:Gem::Requirement
46
46
  requirements:
47
- - - ~>
47
+ - - "~>"
48
48
  - !ruby/object:Gem::Version
49
49
  version: '0'
50
50
  type: :development
51
51
  prerelease: false
52
52
  version_requirements: !ruby/object:Gem::Requirement
53
53
  requirements:
54
- - - ~>
54
+ - - "~>"
55
55
  - !ruby/object:Gem::Version
56
56
  version: '0'
57
57
  - !ruby/object:Gem::Dependency
58
58
  name: minitest
59
59
  requirement: !ruby/object:Gem::Requirement
60
60
  requirements:
61
- - - ~>
61
+ - - "~>"
62
62
  - !ruby/object:Gem::Version
63
63
  version: '5.9'
64
64
  type: :development
65
65
  prerelease: false
66
66
  version_requirements: !ruby/object:Gem::Requirement
67
67
  requirements:
68
- - - ~>
68
+ - - "~>"
69
69
  - !ruby/object:Gem::Version
70
70
  version: '5.9'
71
71
  description: Interact with SendGrids API in native Ruby
@@ -74,9 +74,9 @@ executables: []
74
74
  extensions: []
75
75
  extra_rdoc_files: []
76
76
  files:
77
- - .github/ISSUE_TEMPLATE
78
- - .gitignore
79
- - .travis.yml
77
+ - ".github/ISSUE_TEMPLATE"
78
+ - ".gitignore"
79
+ - ".travis.yml"
80
80
  - CHANGELOG.md
81
81
  - CONTRIBUTING.md
82
82
  - Gemfile
@@ -140,17 +140,17 @@ require_paths:
140
140
  - lib
141
141
  required_ruby_version: !ruby/object:Gem::Requirement
142
142
  requirements:
143
- - - '>='
143
+ - - ">="
144
144
  - !ruby/object:Gem::Version
145
145
  version: '0'
146
146
  required_rubygems_version: !ruby/object:Gem::Requirement
147
147
  requirements:
148
- - - '>='
148
+ - - ">="
149
149
  - !ruby/object:Gem::Version
150
150
  version: '0'
151
151
  requirements: []
152
152
  rubyforge_project:
153
- rubygems_version: 2.0.14.1
153
+ rubygems_version: 2.6.10
154
154
  signing_key:
155
155
  specification_version: 4
156
156
  summary: Official SendGrid Gem