sendgrid-ruby 3.0.1 → 3.0.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/sendgrid-ruby.rb +2 -1
- data/sendgrid-ruby.gemspec +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: 5ee165cdc74cf8a9ac2aeedc52cea6a99c7c8877
|
4
|
+
data.tar.gz: 96cb466d3c83640b210072ab4a45530ae690b1eb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 00aba1d4ef01167d3266b0f75ab280f7d87dfba267ef7ef60c9a735cd67dc3382e32fd03de48161940a921f7d06ec15fd989246f832e8c9bee001b181cbf6b51
|
7
|
+
data.tar.gz: 50da10d5775c3cb3c4f65e0a2cb153dbacaff0f607004429f20acaebff0b9ca85b81a86446b5b27efacc1140850795ca6645cf86989761c62dc8143d65b04700
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,10 @@
|
|
1
1
|
# Change Log
|
2
2
|
All notable changes to this project will be documented in this file.
|
3
3
|
|
4
|
+
## [3.0.2] - 2016-06-15 ##
|
5
|
+
### Added
|
6
|
+
- Relative import for mail/helper
|
7
|
+
|
4
8
|
## [3.0.1] - 2016-06-15 ##
|
5
9
|
### Added
|
6
10
|
- Add mail/send helper to the $LOAD_PATH, updated http client dependency
|
data/lib/sendgrid-ruby.rb
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
# Quickly and easily access the SendGrid API.
|
2
2
|
require 'ruby_http_client'
|
3
|
+
require_relative 'helpers/mail'
|
3
4
|
|
4
5
|
module SendGrid
|
5
6
|
# Initialize the HTTP client
|
@@ -14,7 +15,7 @@ module SendGrid
|
|
14
15
|
# currently only "v3" is supported
|
15
16
|
#
|
16
17
|
def initialize(api_key: nil, host: nil, request_headers: nil, version: nil)
|
17
|
-
@VERSION = '
|
18
|
+
@VERSION = '3.0.2'
|
18
19
|
@api_key = api_key
|
19
20
|
@host = host ? host : 'https://api.sendgrid.com'
|
20
21
|
@version = version ? version : 'v3'
|
data/sendgrid-ruby.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |spec|
|
6
6
|
spec.name = 'sendgrid-ruby'
|
7
|
-
spec.version = '3.0.
|
7
|
+
spec.version = '3.0.2'
|
8
8
|
spec.authors = ['Elmer Thomas', 'Robin Johnson', 'Eddie Zaneski']
|
9
9
|
spec.email = 'dx@sendgrid.com'
|
10
10
|
spec.summary = 'Official SendGrid Gem'
|