smtpapi 0.1.3 → 0.1.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/lib/smtpapi/version.rb +1 -1
- data/smtpapi.gemspec +1 -0
- data/test/test.rb +2 -1
- data/test/test_helper.rb +2 -0
- metadata +18 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8c7168ccac448f1dfc93c0b0558365926c78d94d0daeade22b3e7458672e617b
|
4
|
+
data.tar.gz: 3db08e161f40a05359985a417278e3f5ee1c5cc72e3000ad126e7210bbd9b2c4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 40ede31b57ed125271afe680498907f92a8945d9cd0611b36fcd902a6ce7c3ccb2fdbcd45bc0b4905c0b55c1496ab49161761d223655cd73d2a231e3eaa504c2
|
7
|
+
data.tar.gz: 6e237f9b1387d51b5e2ef58e5f543f6f39197e6daf554d57749416c5f00286286a42912116a4094d8a415eee251ff5c6c5ce64fcb49c2da76fe4289871cf45c7
|
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-02-19] Version 0.1.4
|
7
|
+
--------------------------
|
8
|
+
**Library - Chore**
|
9
|
+
- [PR #87](https://github.com/sendgrid/smtpapi-ruby/pull/87): Add test coverage analysis. Thanks to [@RolandBurrows](https://github.com/RolandBurrows)!
|
10
|
+
|
11
|
+
|
6
12
|
[2020-01-22] Version 0.1.3
|
7
13
|
--------------------------
|
8
14
|
**Library - Fix**
|
data/lib/smtpapi/version.rb
CHANGED
data/smtpapi.gemspec
CHANGED
data/test/test.rb
CHANGED
@@ -1,3 +1,4 @@
|
|
1
|
+
require 'test_helper'
|
1
2
|
require 'test/unit'
|
2
3
|
require './lib/smtpapi'
|
3
4
|
|
@@ -6,7 +7,7 @@ require './lib/smtpapi'
|
|
6
7
|
#
|
7
8
|
class SmtpapiTest < Test::Unit::TestCase
|
8
9
|
def test_version
|
9
|
-
assert_equal('0.1.
|
10
|
+
assert_equal('0.1.4', Smtpapi::VERSION)
|
10
11
|
end
|
11
12
|
|
12
13
|
def test_empty
|
data/test/test_helper.rb
ADDED
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.4
|
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-02-19 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -59,6 +59,20 @@ dependencies:
|
|
59
59
|
- - "~>"
|
60
60
|
- !ruby/object:Gem::Version
|
61
61
|
version: '3.0'
|
62
|
+
- !ruby/object:Gem::Dependency
|
63
|
+
name: simplecov
|
64
|
+
requirement: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ">="
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '0'
|
69
|
+
type: :development
|
70
|
+
prerelease: false
|
71
|
+
version_requirements: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
62
76
|
description: Smtpapi library for SendGrid.
|
63
77
|
email:
|
64
78
|
- awwa500@gmail.com
|
@@ -88,6 +102,7 @@ files:
|
|
88
102
|
- lib/smtpapi/version.rb
|
89
103
|
- smtpapi.gemspec
|
90
104
|
- test/test.rb
|
105
|
+
- test/test_helper.rb
|
91
106
|
- use_cases/README.md
|
92
107
|
homepage: https://github.com/sendgrid/smtpapi-ruby
|
93
108
|
licenses:
|
@@ -114,3 +129,4 @@ specification_version: 4
|
|
114
129
|
summary: Smtpapi library for SendGrid.
|
115
130
|
test_files:
|
116
131
|
- test/test.rb
|
132
|
+
- test/test_helper.rb
|