mailinator_client 1.0.0 → 1.0.1

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.
@@ -0,0 +1,16 @@
1
+ require "rubygems"
2
+
3
+ gem "minitest"
4
+ require "minitest/autorun"
5
+ require "minitest/spec"
6
+ require "minitest/mock"
7
+ require "webmock/minitest"
8
+ require_relative "../lib/mailinator_client"
9
+
10
+ class MiniTest::Test
11
+ def setup
12
+ WebMock.allow_net_connect!
13
+ #WebMock.disable_net_connect!
14
+ #WebMock.allow_net_connect!(net_http_connect_on_start: true)
15
+ end
16
+ 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.0
4
+ version: 1.0.1
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-10 00:00:00.000000000 Z
11
+ date: 2020-10-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: httparty
@@ -72,7 +72,31 @@ email:
72
72
  executables: []
73
73
  extensions: []
74
74
  extra_rdoc_files: []
75
- files: []
75
+ files:
76
+ - ".gitignore"
77
+ - ".markdownlint.json"
78
+ - ".ruby-version"
79
+ - ".travis.yml"
80
+ - Gemfile
81
+ - LICENSE
82
+ - README.md
83
+ - Rakefile
84
+ - docs/domains.md
85
+ - docs/messages.md
86
+ - docs/rules.md
87
+ - docs/stats.md
88
+ - lib/mailinator_client.rb
89
+ - lib/mailinator_client/client.rb
90
+ - lib/mailinator_client/domains.rb
91
+ - lib/mailinator_client/error.rb
92
+ - lib/mailinator_client/messages.rb
93
+ - lib/mailinator_client/rules.rb
94
+ - lib/mailinator_client/stats.rb
95
+ - lib/mailinator_client/utils.rb
96
+ - lib/mailinator_client/version.rb
97
+ - mailinator_client.gemspec
98
+ - test/mailinator_client_api_test.rb
99
+ - test/test_helper.rb
76
100
  homepage: https://github.com/manybrain/mailinator-ruby-client
77
101
  licenses:
78
102
  - MIT
@@ -96,4 +120,6 @@ rubygems_version: 3.0.8
96
120
  signing_key:
97
121
  specification_version: 4
98
122
  summary: Provides a simple ruby wrapper around the Mailinator REST API
99
- test_files: []
123
+ test_files:
124
+ - test/mailinator_client_api_test.rb
125
+ - test/test_helper.rb