sendgrid-mailer 0.1.5 → 0.1.6

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: 1c750b061a9652833f93dd32b4c73d5c8d8a413a
4
- data.tar.gz: f188678eddb9e10983051e8d7525e4b7c31ca362
3
+ metadata.gz: 5990e941d9695eaac104b8c0165bfeeb70913d6b
4
+ data.tar.gz: f4aef07ff23c51aec6c33816f71045592e21a9d4
5
5
  SHA512:
6
- metadata.gz: d0587138ddbc82af03a9b91909a581f0e5d17589b0efa469c3fe2fb7aa8ee1fbb83cd51d78527f168f22246b93b23c315a5c4f9124f2294500a608c07beef371
7
- data.tar.gz: 983917693ea0608772449b75d0ba023e3d1cd8f0a835f879844d994b343077e13fa8ca4d9a12d4e59ec4030583d77a3f3ba25baffeedf2a44faeb85d54d3a78a
6
+ metadata.gz: 72d972f52f9cad8c90858df1a461921b0a4f6723a7af95fcad04d909ccd5944e216f6182a6860ae61d84d81103b13968a0787e312412b3c8ca64cb1f6862143d
7
+ data.tar.gz: adc2bb8a11701b984e65f8d609a0b55afeb3fdff52c55251f75d33555a23a8675ece8de7aa4efe6a154109898a6d146841a9b07a67632ea2f30940079b58a8cd
@@ -1,5 +1,5 @@
1
1
  module Sendgrid
2
2
  class Mailer
3
- VERSION = "0.1.5"
3
+ VERSION = "0.1.6"
4
4
  end
5
5
  end
@@ -7,7 +7,7 @@ module Sendgrid
7
7
  class Mailer
8
8
  include SendGrid
9
9
 
10
- def initialize (api_key, from, bcc)
10
+ def initialize(api_key, from, bcc)
11
11
  @api_key = api_key
12
12
  @from = from
13
13
  @bcc = bcc
@@ -34,7 +34,6 @@ module Sendgrid
34
34
 
35
35
  def send_mail(options)
36
36
  options = build_mail_json(options)
37
- puts options
38
37
  send_grid.client.mail._('send').post(request_body: options)
39
38
  end
40
39
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sendgrid-mailer
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.5
4
+ version: 0.1.6
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Watling