sendgrid-ruby 6.0.0 → 6.0.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
- SHA1:
3
- metadata.gz: 2a951fe9149a9c9e1ca5e9c9ce053995bb80810c
4
- data.tar.gz: e974acc6b662c335d35ad99702a173a70b656c0c
2
+ SHA256:
3
+ metadata.gz: e0eb9a46e4a360998faa1acfd1c4099a7239cc1c259dd5b20fb226695d141c22
4
+ data.tar.gz: 539ca585922aa194025a036e1e3f1b7857d415c0161019b6115820e7a432bc32
5
5
  SHA512:
6
- metadata.gz: 9f51d4253bd7708337a981c2f196b4e37f3d8b092a469d11b7300815d3faef5bec7c6df32c98c1be8158dd71146d87d4983b560710d4d8715dcf0f1d55f6b62d
7
- data.tar.gz: 7beeb7406e6e7b5370d42aa5d35b471bcab706b43bead079a58104cc4f641b19f7fa11ec6f17b95d7e0f371c5dde99832369b8fc2940457a907a64d214c0d0d2
6
+ metadata.gz: d98ebe45a7a86771900dd39f9ec4e576999fe7b91be39fac31a0d0683c79f61b9060b942be9be4297e9e472345355ba98e7c1d9210a5d0e811bc98c4892c6a45
7
+ data.tar.gz: 527d3479ea0a6fe77954492f4e9015d30ea0c69ced16f6743e3582ef623b9a8e14f773becb02a1d934a261dc070aaf80f9312c20cbc1d72c8cae4820a316ee4a
@@ -1,8 +1,10 @@
1
1
  language: ruby
2
2
  rvm:
3
- - 2.2.6
4
- - 2.3.4
5
- - 2.4.1
3
+ - ruby-head
4
+ - 2.6
5
+ - 2.5
6
+ - 2.4
7
+ - jruby
6
8
  gemfile:
7
9
  - gemfiles/Sinatra_1.gemfile
8
10
  - gemfiles/Sinatra_2.gemfile
@@ -10,20 +12,18 @@ before_script:
10
12
  - mkdir prism
11
13
  - mkdir prism/bin
12
14
  - export PATH=$PATH:$PWD/prism/bin/
13
- - ./test/prism.sh
14
- notifications:
15
- hipchat:
16
- rooms:
17
- secure: gYBEwOGBTxHE2nrxsHQqp2UdjRtCX04wVLYEimeT9RG/0LClS4nzJF7DaXLWlAwgLPmk+KV2+nXuLO5oausBr9ODmWhho8G0F90RPR47NupcvT1RM+I2ZbxSjHCUICL22mdnZd8ye/mrk/YtFWYmgmH7ILRK3BuYovXFoKoRnLg=
18
- template:
19
- - '<a href="https://travis-ci.org/%{repository}/builds/%{build_id}">%{repository}
20
- Build %{build_number}</a> on branch <i>%{branch}</i> by %{author}: <strong>%{message}</strong>
21
- <a href="https://github.com/sendgrid/%{repository}/commits/%{commit}">View on GitHub</a>'
22
- format: html
23
- notify: false
24
- script:
25
- - rake test
26
- - rake spec
27
- before_install:
28
- - gem update bundler
29
-
15
+ - "./test/prism.sh"
16
+ install: make install
17
+ script: make test
18
+ matrix:
19
+ allow_failures:
20
+ - rvm: ruby-head
21
+ fast_finish: true
22
+ deploy:
23
+ provider: rubygems
24
+ api_key:
25
+ secure: CWlfN170i/fHPrIufHHLWQ0utjuhxf4ELSxKeypIuO2CNTqNMzocDAa2vxMt4XfO6d2wFPV/LC+IHR7i+sp7PKvjRoa4BLUUxjfBNDboc0gGESeUYlAxwsJo0tOVCNmpxgjQKqtPLz/19A/v/xpxLv2Im/9Idqa5ATd06sMDdM8=
26
+ gem: sendgrid-ruby
27
+ on:
28
+ tags: true
29
+ rvm: '2.4'
@@ -1,7 +1,19 @@
1
1
  # Change Log
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
- ## [6.0.0] - 2019-06-04 ##
4
+ [2020-01-03] Version 6.0.1
5
+ --------------------------
6
+ **Library - Chore**
7
+ - [PR #400](https://github.com/sendgrid/sendgrid-ruby/pull/400): Add auto-deploy to travis.yml. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
8
+ - [PR #399](https://github.com/sendgrid/sendgrid-ruby/pull/399): Add testing to Makefile. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
9
+ - [PR #396](https://github.com/sendgrid/sendgrid-ruby/pull/396): Adding Makefile to assist with automation. Thanks to [@thinkingserious](https://github.com/thinkingserious)!
10
+
11
+ **Library - Fix**
12
+ - [PR #321](https://github.com/sendgrid/sendgrid-ruby/pull/321): TROUBLESHOOTING.md broken link fix. Thanks to [@arshadkazmi42](https://github.com/arshadkazmi42)!
13
+
14
+
15
+ [2019-06-04] Version 6.0.0
16
+ --------------------------
5
17
  ### BREAKING CHANGE
6
18
  - [PR #284](https://github.com/sendgrid/sendgrid-ruby/pull/284): The sinatra gem is no longer specified as a dependency of this gem. If you would like to use the inbound processing, please follow the [upgrade guide](https://github.com/sendgrid/sendgrid-ruby/blob/master/UPGRADE.md). Big thanks to [@jjb](https://github.com/jjb) for the PR!
7
19
 
@@ -1,4 +1,4 @@
1
- Copyright (c) 2014-2019 Twilio SendGrid, Inc.
1
+ Copyright (c) 2014-2020 Twilio SendGrid, Inc.
2
2
 
3
3
  MIT License
4
4
 
@@ -0,0 +1,7 @@
1
+ .PHONY: install test
2
+
3
+ install:
4
+ gem install bundler:1.14.6; bundle install
5
+
6
+ test:
7
+ bundle exec rake spec
@@ -53,7 +53,7 @@ Click the "Clone or download" green button in [GitHub](https://github.com/sendgr
53
53
  <a name="testing"></a>
54
54
  ## Testing v3 /mail/send Calls Directly
55
55
 
56
- [Here](https://sendgrid.com/docs/Classroom/Send/v3_Mail_Send/curl_examples.html) are some cURL examples for common use cases.
56
+ [Here](https://sendgrid.com/docs/for-developers/sending-email/curl-examples/) are some cURL examples for common use cases.
57
57
 
58
58
  <a name="error"></a>
59
59
  ## Error Messages
@@ -1,3 +1,3 @@
1
1
  module SendGrid
2
- VERSION = '6.0.0'
2
+ VERSION = '6.0.1'
3
3
  end
@@ -58,7 +58,7 @@ class TestAPI < MiniTest::Test
58
58
  assert_equal(test_headers, sg.request_headers)
59
59
  assert_equal("v3", sg.version)
60
60
  assert_equal(subuser, sg.impersonate_subuser)
61
- assert_equal("6.0.0", SendGrid::VERSION)
61
+ assert_equal("6.0.1", SendGrid::VERSION)
62
62
  assert_instance_of(SendGrid::Client, sg.client)
63
63
  end
64
64
 
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: 6.0.0
4
+ version: 6.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Elmer Thomas
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2019-06-04 00:00:00.000000000 Z
13
+ date: 2020-01-03 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: ruby_http_client
@@ -148,6 +148,7 @@ files:
148
148
  - CONTRIBUTING.md
149
149
  - Gemfile
150
150
  - LICENSE.txt
151
+ - Makefile
151
152
  - README.md
152
153
  - Rakefile
153
154
  - TROUBLESHOOTING.md
@@ -271,8 +272,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
271
272
  - !ruby/object:Gem::Version
272
273
  version: '0'
273
274
  requirements: []
274
- rubyforge_project:
275
- rubygems_version: 2.6.10
275
+ rubygems_version: 3.0.3
276
276
  signing_key:
277
277
  specification_version: 4
278
278
  summary: Official Twilio SendGrid Gem