sendgrid-ruby 3.0.1 → 3.0.2

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: d430ed76a8f97adc02a891cc82dc54c565493bf4
4
- data.tar.gz: 4751ce800e1a46e59fc583574398fd5c2abaaf0a
3
+ metadata.gz: 5ee165cdc74cf8a9ac2aeedc52cea6a99c7c8877
4
+ data.tar.gz: 96cb466d3c83640b210072ab4a45530ae690b1eb
5
5
  SHA512:
6
- metadata.gz: f06d2f8ac0e9d31c5a711247a1d9fc4250065e55406b48974d7cbdef18ff4d8850de3bb06127cd660a5efaa755f2b3b95785c2f7272264452fcc632ee54ebbbd
7
- data.tar.gz: 4a95cfd5ba5b6e0f83f564b0bae049d3b04bd25837199456449631fc58d78641dd9be48cec248d61a3f475ef2f6fa8e348801f882f4cebdbec7f0135e2e2c9e5
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 = '2.0.0'
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'
@@ -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.1'
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'
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: 3.0.1
4
+ version: 3.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elmer Thomas