mailinator_client 1.0.2 → 1.0.3

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
2
  SHA256:
3
- metadata.gz: 53dfb086987aa73902e4b5a513da720b17069e6fe0e376f5f7e39b5dc0e3ef08
4
- data.tar.gz: 67c036c5ba409c62a1357f2e1f2217632b6bccf7087c2959fadda5bdb2793b4e
3
+ metadata.gz: 3c153614073d679cfcc656e550cb8d2728f7083a207fbce01927fabd42b4aefb
4
+ data.tar.gz: 91de6200531df3ebe4a53d55052de5d703ff414e6cbb8a9bf2d62306ffaf8918
5
5
  SHA512:
6
- metadata.gz: 9ba71db113ef295a23eee44d38e13470c9d7e2adc8fd85aa1dc2028f15455a9a5a283883666e9a32afe2d8fa583ec0cb0c0c833bf1da0f6073d1f9926b077da7
7
- data.tar.gz: 12527e9e153589ee1a8909c0c9390cafff8b357715318a081a70dbb53d14b5c6a234824bc7ee7e6cdab6d481096e6d9ec050a5ca6bea9571ef9c69de0c7c1cc7
6
+ metadata.gz: eb73f7d0316d9ed00664a6a94bf2054759b42047541fcda1288519abded67baedf1f021a6d9a70f3d6b76ca0f77fa6968c4394ea028bd55f5675ae2d01c6304f
7
+ data.tar.gz: e27c8a33b6d1cff75fddeef04b6b23f1306c4a46bde27c00d718c0a423c2e4c565d896e0e50695c5ef97e112ac07ec421f4b2bf56d1f0cb4f4804fcea3af5a7e
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.3
1
+ 2.7.6
@@ -1,25 +1,25 @@
1
- # The MIT License (MIT)
2
- #
3
- # Copyright (c) 2020 Manybrain, Inc.
4
- #
5
- # Permission is hereby granted, free of charge, to any person obtaining a copy
6
- # of this software and associated documentation files (the "Software"), to deal
7
- # in the Software without restriction, including without limitation the rights
8
- # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- # copies of the Software, and to permit persons to whom the Software is
10
- # furnished to do so, subject to the following conditions:
11
- #
12
- # The above copyright notice and this permission notice shall be included in all
13
- # copies or substantial portions of the Software.
14
- #
15
- # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- # SOFTWARE.
22
-
23
- module MailinatorClient
24
- VERSION = "1.0.2"
25
- end
1
+ # The MIT License (MIT)
2
+ #
3
+ # Copyright (c) 2020 Manybrain, Inc.
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ # of this software and associated documentation files (the "Software"), to deal
7
+ # in the Software without restriction, including without limitation the rights
8
+ # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ # copies of the Software, and to permit persons to whom the Software is
10
+ # furnished to do so, subject to the following conditions:
11
+ #
12
+ # The above copyright notice and this permission notice shall be included in all
13
+ # copies or substantial portions of the Software.
14
+ #
15
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ # SOFTWARE.
22
+
23
+ module MailinatorClient
24
+ VERSION = "1.0.3"
25
+ end
@@ -1,25 +1,25 @@
1
- $LOAD_PATH.push(File.expand_path("../lib", __FILE__))
2
- require "mailinator_client/version"
3
-
4
- Gem::Specification.new do |gem|
5
- gem.name = "mailinator_client"
6
- gem.authors = ["Marian Melnychuk"]
7
- gem.email = ["marian.melnychuk@gmail.com"]
8
- gem.summary = %q{Provides a simple ruby wrapper around the Mailinator REST API}
9
- gem.description = %q{Easily use the Mailinator through its REST API with Ruby}
10
- gem.homepage = "https://github.com/manybrain/mailinator-ruby-client"
11
- gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
12
- gem.files = `git ls-files`.split("\n")
13
- gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
- gem.require_paths = ["lib"]
15
- gem.version = MailinatorClient::VERSION
16
- gem.licenses = ["MIT"]
17
-
18
- gem.required_ruby_version = ">= 2.1"
19
-
20
- gem.add_dependency "httparty", "~> 0.14.0"
21
-
22
- gem.add_development_dependency "minitest", "~> 5.9"
23
- gem.add_development_dependency "rake", "~> 12"
24
- gem.add_development_dependency "webmock", "~> 2.3"
25
- end
1
+ $LOAD_PATH.push(File.expand_path("../lib", __FILE__))
2
+ require "mailinator_client/version"
3
+
4
+ Gem::Specification.new do |gem|
5
+ gem.name = "mailinator_client"
6
+ gem.authors = ["Marian Melnychuk"]
7
+ gem.email = ["marian.melnychuk@gmail.com"]
8
+ gem.summary = %q{Provides a simple ruby wrapper around the Mailinator REST API}
9
+ gem.description = %q{Easily use the Mailinator through its REST API with Ruby}
10
+ gem.homepage = "https://github.com/manybrain/mailinator-ruby-client"
11
+ gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
12
+ gem.files = `git ls-files`.split("\n")
13
+ gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
14
+ gem.require_paths = ["lib"]
15
+ gem.version = MailinatorClient::VERSION
16
+ gem.licenses = ["MIT"]
17
+
18
+ gem.required_ruby_version = ">= 2.1"
19
+
20
+ gem.add_dependency "httparty", "~> 0.21.0"
21
+
22
+ gem.add_development_dependency "minitest", "~> 5.9"
23
+ gem.add_development_dependency "rake", "~> 12"
24
+ gem.add_development_dependency "webmock", "~> 2.3"
25
+ end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: mailinator_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Marian Melnychuk
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-16 00:00:00.000000000 Z
11
+ date: 2023-04-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.14.0
19
+ version: 0.21.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.14.0
26
+ version: 0.21.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: minitest
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -116,10 +116,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
116
116
  - !ruby/object:Gem::Version
117
117
  version: '0'
118
118
  requirements: []
119
- rubygems_version: 3.0.8
119
+ rubygems_version: 3.4.10
120
120
  signing_key:
121
121
  specification_version: 4
122
122
  summary: Provides a simple ruby wrapper around the Mailinator REST API
123
- test_files:
124
- - test/mailinator_client_api_test.rb
125
- - test/test_helper.rb
123
+ test_files: []