smtpapi 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +10 -9
- data/CHANGELOG.md +6 -0
- data/README.md +1 -4
- data/lib/smtpapi/version.rb +1 -1
- data/test/test.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9ffd2d43fd3ac65eaf3907885578d80fa88a7336cf32a1d4ae13d235be01a5b8
|
4
|
+
data.tar.gz: 077d3581f8534fecc641aabff3f03680422255e8dd89ed7e7e44040e905070c2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ea6f7df2c4ea4082b6d3249413b404d2dc8a94582c5e7c6d0427f35f7117ddaa8027217670b7d196140cfe8ad905363f6a1986a946decebcd8fa67421039f349
|
7
|
+
data.tar.gz: b10e8d4b76194f0cc38ff91f70cc323984a7b1f196561817a3b5f50e4779d302d659766fca4a136864b84dfc9f8aa7bf9292608359e6a11390b43dae1a865677
|
data/.travis.yml
CHANGED
@@ -1,18 +1,19 @@
|
|
1
1
|
language: ruby
|
2
2
|
rvm:
|
3
|
-
- ruby-head
|
4
|
-
- 2.
|
5
|
-
- 2.
|
6
|
-
- 2.
|
7
|
-
-
|
3
|
+
- ruby-head
|
4
|
+
- 2.7
|
5
|
+
- 2.6
|
6
|
+
- 2.5
|
7
|
+
- 2.4
|
8
|
+
- jruby
|
8
9
|
before_script:
|
9
|
-
- bundle install
|
10
|
+
- bundle install
|
10
11
|
script:
|
11
|
-
- rubocop --fail-level=W
|
12
|
-
- rake test
|
12
|
+
- rubocop --fail-level=W
|
13
|
+
- rake test
|
13
14
|
matrix:
|
14
15
|
allow_failures:
|
15
|
-
|
16
|
+
- rvm: ruby-head
|
16
17
|
fast_finish: true
|
17
18
|
deploy:
|
18
19
|
provider: rubygems
|
data/CHANGELOG.md
CHANGED
@@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file.
|
|
3
3
|
|
4
4
|
This project adheres to [Semantic Versioning](http://semver.org/).
|
5
5
|
|
6
|
+
[2020-03-04] Version 0.1.5
|
7
|
+
--------------------------
|
8
|
+
**Library - Chore**
|
9
|
+
- [PR #95](https://github.com/sendgrid/smtpapi-ruby/pull/95): add Ruby 2.7 to Travis. Thanks to [@childish-sambino](https://github.com/childish-sambino)!
|
10
|
+
|
11
|
+
|
6
12
|
[2020-02-19] Version 0.1.4
|
7
13
|
--------------------------
|
8
14
|
**Library - Chore**
|
data/README.md
CHANGED
@@ -10,11 +10,8 @@
|
|
10
10
|
|
11
11
|
**This ruby gem allows you to quickly and more easily generate SendGrid X-SMTPAPI headers.**
|
12
12
|
|
13
|
-
|
14
13
|
# Announcements
|
15
14
|
|
16
|
-
**NEW:** If you're a software engineer who is passionate about #DeveloperExperience and/or #OpenSource, [this is an incredible opportunity to join our #DX team](https://sendgrid.com/careers/role/1421152/?gh_jid=1421152) as a Developer Experience Engineer and work with [@thinkingserious](https://github.com/thinkingserious) and [@aroach](https://github.com/aroach)! Tell your friends :)
|
17
|
-
|
18
15
|
All updates to this library is documented in our [CHANGELOG](https://github.com/sendgrid/smtpapi-ruby/blob/master/CHANGELOG.md).
|
19
16
|
|
20
17
|
# Table of Contents
|
@@ -31,7 +28,7 @@ All updates to this library is documented in our [CHANGELOG](https://github.com/
|
|
31
28
|
|
32
29
|
## Prerequisites
|
33
30
|
|
34
|
-
- Ruby version 2.
|
31
|
+
- Ruby version >= 2.4
|
35
32
|
- The SendGrid service, starting at the [free level](https://sendgrid.com/free?source=smtpapi-ruby)
|
36
33
|
|
37
34
|
## Install Package
|
data/lib/smtpapi/version.rb
CHANGED
data/test/test.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: smtpapi
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wataru Sato
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2020-
|
12
|
+
date: 2020-03-04 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|