truemail-client 0.1.0 → 0.1.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.
- checksums.yaml +4 -4
- data/.codeclimate.yml +1 -1
- data/.gitignore +1 -0
- data/.rubocop.yml +88 -4
- data/CHANGELOG.md +12 -1
- data/Gemfile.lock +53 -69
- data/README.md +26 -40
- data/lib/truemail/client/version.rb +1 -1
- data/truemail-client.gemspec +9 -9
- metadata +33 -33
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ed0062cf7b8d5dffcda7197b78c35693e0e3c6fc35e69c01948de4a8bf2e4df8
|
|
4
|
+
data.tar.gz: c5f1c8249883336d12c4c0c9248f9fb3725a055333b2f5bde49fa86180439e56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f18bb396644f028cb9b2d269fe9bf44c52ff3378443d6b795b64939763736a3610467d40dd4b2365aef9d8bc2d94c0cd37993040e06ad14c447b97de2b75160c
|
|
7
|
+
data.tar.gz: 2de0b0b9a3f3efa114c3960c7adf221ac381304e5d38b744c604c1f8e9a68d023a9c9a143190f09a0f231befffd62c98874a93f626f9c588478864e4f21bcc9a
|
data/.codeclimate.yml
CHANGED
data/.gitignore
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -44,17 +44,62 @@ Style/RescueStandardError:
|
|
|
44
44
|
Enabled: false
|
|
45
45
|
|
|
46
46
|
Style/HashEachMethods:
|
|
47
|
-
Enabled:
|
|
47
|
+
Enabled: true
|
|
48
48
|
|
|
49
49
|
Style/HashTransformKeys:
|
|
50
|
-
Enabled:
|
|
50
|
+
Enabled: true
|
|
51
51
|
|
|
52
52
|
Style/HashTransformValues:
|
|
53
|
-
Enabled:
|
|
53
|
+
Enabled: true
|
|
54
|
+
|
|
55
|
+
Style/AccessorGrouping:
|
|
56
|
+
Enabled: true
|
|
57
|
+
|
|
58
|
+
Style/ArrayCoercion:
|
|
59
|
+
Enabled: true
|
|
60
|
+
|
|
61
|
+
Style/BisectedAttrAccessor:
|
|
62
|
+
Enabled: true
|
|
63
|
+
|
|
64
|
+
Style/CaseLikeIf:
|
|
65
|
+
Enabled: true
|
|
66
|
+
|
|
67
|
+
Style/ExponentialNotation:
|
|
68
|
+
Enabled: true
|
|
69
|
+
|
|
70
|
+
Style/HashAsLastArrayItem:
|
|
71
|
+
Enabled: true
|
|
72
|
+
|
|
73
|
+
Style/HashLikeCase:
|
|
74
|
+
Enabled: true
|
|
75
|
+
|
|
76
|
+
Style/RedundantAssignment:
|
|
77
|
+
Enabled: true
|
|
78
|
+
|
|
79
|
+
Style/RedundantFetchBlock:
|
|
80
|
+
Enabled: true
|
|
81
|
+
|
|
82
|
+
Style/RedundantFileExtensionInRequire:
|
|
83
|
+
Enabled: true
|
|
84
|
+
|
|
85
|
+
Style/RedundantRegexpCharacterClass:
|
|
86
|
+
Enabled: true
|
|
87
|
+
|
|
88
|
+
Style/RedundantRegexpEscape:
|
|
89
|
+
Enabled: true
|
|
90
|
+
|
|
91
|
+
Style/SlicingWithRange:
|
|
92
|
+
Enabled: true
|
|
54
93
|
|
|
55
94
|
Layout/LineLength:
|
|
56
95
|
Max: 140
|
|
57
96
|
|
|
97
|
+
Layout/EmptyLinesAroundAttributeAccessor:
|
|
98
|
+
Enabled: true
|
|
99
|
+
|
|
100
|
+
Layout/SpaceAroundMethodCallOperator:
|
|
101
|
+
Enabled: true
|
|
102
|
+
|
|
58
103
|
Layout/ClassStructure:
|
|
59
104
|
Enabled: true
|
|
60
105
|
Categories:
|
|
@@ -81,7 +126,46 @@ Layout/EmptyLineAfterGuardClause:
|
|
|
81
126
|
Enabled: false
|
|
82
127
|
|
|
83
128
|
Lint/NonDeterministicRequireOrder:
|
|
84
|
-
Enabled:
|
|
129
|
+
Enabled: true
|
|
130
|
+
|
|
131
|
+
Lint/DeprecatedOpenSSLConstant:
|
|
132
|
+
Enabled: true
|
|
133
|
+
|
|
134
|
+
Lint/DuplicateElsifCondition:
|
|
135
|
+
Enabled: true
|
|
136
|
+
|
|
137
|
+
Lint/MixedRegexpCaptureTypes:
|
|
138
|
+
Enabled: true
|
|
139
|
+
|
|
140
|
+
Lint/RaiseException:
|
|
141
|
+
Enabled: true
|
|
142
|
+
|
|
143
|
+
Lint/StructNewOverride:
|
|
144
|
+
Enabled: true
|
|
145
|
+
|
|
146
|
+
Performance/AncestorsInclude:
|
|
147
|
+
Enabled: true
|
|
148
|
+
|
|
149
|
+
Performance/BigDecimalWithNumericArgument:
|
|
150
|
+
Enabled: true
|
|
151
|
+
|
|
152
|
+
Performance/RedundantSortBlock:
|
|
153
|
+
Enabled: true
|
|
154
|
+
|
|
155
|
+
Performance/RedundantStringChars:
|
|
156
|
+
Enabled: true
|
|
157
|
+
|
|
158
|
+
Performance/ReverseFirst:
|
|
159
|
+
Enabled: true
|
|
160
|
+
|
|
161
|
+
Performance/SortReverse:
|
|
162
|
+
Enabled: true
|
|
163
|
+
|
|
164
|
+
Performance/Squeeze:
|
|
165
|
+
Enabled: true
|
|
166
|
+
|
|
167
|
+
Performance/StringInclude:
|
|
168
|
+
Enabled: true
|
|
85
169
|
|
|
86
170
|
RSpec/ExampleLength:
|
|
87
171
|
Enabled: false
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
|
+
|
|
2
3
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
3
4
|
|
|
4
|
-
## [0.1.
|
|
5
|
+
## [0.1.1] - 2020-07-21
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Updated gem dependencies
|
|
10
|
+
- Updated gem documentation
|
|
11
|
+
- Updated gem version
|
|
12
|
+
|
|
13
|
+
## [0.1.0] - 2020-03-29
|
|
14
|
+
|
|
5
15
|
### First release
|
|
16
|
+
|
|
6
17
|
- implemented first version of Truemail Ruby client
|
data/Gemfile.lock
CHANGED
|
@@ -1,116 +1,100 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
truemail-client (0.1.
|
|
4
|
+
truemail-client (0.1.1)
|
|
5
5
|
|
|
6
6
|
GEM
|
|
7
7
|
remote: https://rubygems.org/
|
|
8
8
|
specs:
|
|
9
9
|
addressable (2.7.0)
|
|
10
10
|
public_suffix (>= 2.0.2, < 5.0)
|
|
11
|
-
ast (2.4.
|
|
12
|
-
|
|
13
|
-
descendants_tracker (~> 0.0.4)
|
|
14
|
-
ice_nine (~> 0.11.0)
|
|
15
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
16
|
-
bundler-audit (0.6.1)
|
|
11
|
+
ast (2.4.1)
|
|
12
|
+
bundler-audit (0.7.0.1)
|
|
17
13
|
bundler (>= 1.2.0, < 3)
|
|
18
|
-
thor (
|
|
19
|
-
byebug (11.1.
|
|
20
|
-
childprocess (
|
|
21
|
-
|
|
22
|
-
virtus (~> 1.0)
|
|
23
|
-
coderay (1.1.2)
|
|
24
|
-
coercible (1.0.0)
|
|
25
|
-
descendants_tracker (~> 0.0.1)
|
|
14
|
+
thor (>= 0.18, < 2)
|
|
15
|
+
byebug (11.1.3)
|
|
16
|
+
childprocess (4.0.0)
|
|
17
|
+
coderay (1.1.3)
|
|
26
18
|
colorize (0.8.1)
|
|
27
19
|
crack (0.4.3)
|
|
28
20
|
safe_yaml (~> 1.0.0)
|
|
29
|
-
|
|
30
|
-
thread_safe (~> 0.3, >= 0.3.1)
|
|
31
|
-
diff-lcs (1.3)
|
|
21
|
+
diff-lcs (1.4.4)
|
|
32
22
|
docile (1.3.2)
|
|
33
|
-
|
|
34
|
-
fasterer (0.8.2)
|
|
23
|
+
fasterer (0.8.3)
|
|
35
24
|
colorize (~> 0.7)
|
|
36
25
|
ruby_parser (>= 3.14.1)
|
|
37
|
-
ffaker (2.
|
|
26
|
+
ffaker (2.15.0)
|
|
38
27
|
hashdiff (1.0.1)
|
|
39
|
-
ice_nine (0.11.2)
|
|
40
28
|
iniparse (1.5.0)
|
|
41
|
-
|
|
42
|
-
json (2.3.0)
|
|
29
|
+
json (2.3.1)
|
|
43
30
|
json_matchers (0.11.1)
|
|
44
31
|
json_schema
|
|
45
|
-
json_schema (0.20.
|
|
32
|
+
json_schema (0.20.9)
|
|
46
33
|
kwalify (0.7.2)
|
|
47
|
-
method_source (0.
|
|
48
|
-
overcommit (0.
|
|
49
|
-
childprocess (>= 0.6.3, <
|
|
34
|
+
method_source (1.0.0)
|
|
35
|
+
overcommit (0.55.0)
|
|
36
|
+
childprocess (>= 0.6.3, < 5)
|
|
50
37
|
iniparse (~> 1.4)
|
|
51
|
-
parallel (1.19.
|
|
52
|
-
parser (2.7.
|
|
53
|
-
ast (~> 2.4.
|
|
54
|
-
pry (0.
|
|
55
|
-
coderay (~> 1.1
|
|
56
|
-
method_source (~>
|
|
57
|
-
pry-byebug (3.
|
|
38
|
+
parallel (1.19.2)
|
|
39
|
+
parser (2.7.1.4)
|
|
40
|
+
ast (~> 2.4.1)
|
|
41
|
+
pry (0.13.1)
|
|
42
|
+
coderay (~> 1.1)
|
|
43
|
+
method_source (~> 1.0)
|
|
44
|
+
pry-byebug (3.9.0)
|
|
58
45
|
byebug (~> 11.0)
|
|
59
|
-
pry (~> 0.
|
|
46
|
+
pry (~> 0.13.0)
|
|
60
47
|
psych (3.1.0)
|
|
61
|
-
public_suffix (4.0.
|
|
48
|
+
public_suffix (4.0.5)
|
|
62
49
|
rainbow (3.0.0)
|
|
63
50
|
rake (13.0.1)
|
|
64
|
-
reek (
|
|
65
|
-
codeclimate-engine-rb (~> 0.4.0)
|
|
51
|
+
reek (6.0.1)
|
|
66
52
|
kwalify (~> 0.7.0)
|
|
67
53
|
parser (>= 2.5.0.0, < 2.8, != 2.5.1.1)
|
|
68
54
|
psych (~> 3.1.0)
|
|
69
55
|
rainbow (>= 2.0, < 4.0)
|
|
56
|
+
regexp_parser (1.7.1)
|
|
70
57
|
rexml (3.2.4)
|
|
71
58
|
rspec (3.9.0)
|
|
72
59
|
rspec-core (~> 3.9.0)
|
|
73
60
|
rspec-expectations (~> 3.9.0)
|
|
74
61
|
rspec-mocks (~> 3.9.0)
|
|
75
|
-
rspec-core (3.9.
|
|
76
|
-
rspec-support (~> 3.9.
|
|
77
|
-
rspec-expectations (3.9.
|
|
62
|
+
rspec-core (3.9.2)
|
|
63
|
+
rspec-support (~> 3.9.3)
|
|
64
|
+
rspec-expectations (3.9.2)
|
|
78
65
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
79
66
|
rspec-support (~> 3.9.0)
|
|
80
67
|
rspec-mocks (3.9.1)
|
|
81
68
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
82
69
|
rspec-support (~> 3.9.0)
|
|
83
|
-
rspec-support (3.9.
|
|
84
|
-
rubocop (0.
|
|
85
|
-
jaro_winkler (~> 1.5.1)
|
|
70
|
+
rspec-support (3.9.3)
|
|
71
|
+
rubocop (0.88.0)
|
|
86
72
|
parallel (~> 1.10)
|
|
87
|
-
parser (>= 2.7.
|
|
73
|
+
parser (>= 2.7.1.1)
|
|
88
74
|
rainbow (>= 2.2.2, < 4.0)
|
|
75
|
+
regexp_parser (>= 1.7)
|
|
89
76
|
rexml
|
|
77
|
+
rubocop-ast (>= 0.1.0, < 1.0)
|
|
90
78
|
ruby-progressbar (~> 1.7)
|
|
91
|
-
unicode-display_width (>= 1.4.0, <
|
|
92
|
-
rubocop-
|
|
93
|
-
|
|
94
|
-
rubocop-
|
|
95
|
-
rubocop (>= 0.
|
|
79
|
+
unicode-display_width (>= 1.4.0, < 2.0)
|
|
80
|
+
rubocop-ast (0.2.0)
|
|
81
|
+
parser (>= 2.7.0.1)
|
|
82
|
+
rubocop-performance (1.7.1)
|
|
83
|
+
rubocop (>= 0.82.0)
|
|
84
|
+
rubocop-rspec (1.42.0)
|
|
85
|
+
rubocop (>= 0.87.0)
|
|
96
86
|
ruby-progressbar (1.10.1)
|
|
97
87
|
ruby_parser (3.14.2)
|
|
98
88
|
sexp_processor (~> 4.9)
|
|
99
89
|
safe_yaml (1.0.5)
|
|
100
|
-
sexp_processor (4.
|
|
90
|
+
sexp_processor (4.15.0)
|
|
101
91
|
simplecov (0.17.1)
|
|
102
92
|
docile (~> 1.1)
|
|
103
93
|
json (>= 1.8, < 3)
|
|
104
94
|
simplecov-html (~> 0.10.0)
|
|
105
95
|
simplecov-html (0.10.2)
|
|
106
|
-
thor (0.
|
|
107
|
-
|
|
108
|
-
unicode-display_width (1.6.1)
|
|
109
|
-
virtus (1.0.5)
|
|
110
|
-
axiom-types (~> 0.1)
|
|
111
|
-
coercible (~> 1.0)
|
|
112
|
-
descendants_tracker (~> 0.0, >= 0.0.3)
|
|
113
|
-
equalizer (~> 0.0, >= 0.0.9)
|
|
96
|
+
thor (1.0.1)
|
|
97
|
+
unicode-display_width (1.7.0)
|
|
114
98
|
webmock (3.8.3)
|
|
115
99
|
addressable (>= 2.3.6)
|
|
116
100
|
crack (>= 0.3.2)
|
|
@@ -121,18 +105,18 @@ PLATFORMS
|
|
|
121
105
|
|
|
122
106
|
DEPENDENCIES
|
|
123
107
|
bundler (~> 1.16)
|
|
124
|
-
bundler-audit (~> 0.
|
|
125
|
-
fasterer (~> 0.8.
|
|
126
|
-
ffaker (~> 2.
|
|
108
|
+
bundler-audit (~> 0.7.0.1)
|
|
109
|
+
fasterer (~> 0.8.3)
|
|
110
|
+
ffaker (~> 2.15)
|
|
127
111
|
json_matchers (~> 0.11.1)
|
|
128
|
-
overcommit (~> 0.
|
|
129
|
-
pry-byebug (~> 3.
|
|
112
|
+
overcommit (~> 0.55.0)
|
|
113
|
+
pry-byebug (~> 3.9)
|
|
130
114
|
rake (~> 13.0, >= 13.0.1)
|
|
131
|
-
reek (~>
|
|
115
|
+
reek (~> 6.0, >= 6.0.1)
|
|
132
116
|
rspec (~> 3.9)
|
|
133
|
-
rubocop (~> 0.
|
|
134
|
-
rubocop-performance (~> 1.
|
|
135
|
-
rubocop-rspec (~> 1.
|
|
117
|
+
rubocop (~> 0.88.0)
|
|
118
|
+
rubocop-performance (~> 1.7, >= 1.7.1)
|
|
119
|
+
rubocop-rspec (~> 1.42)
|
|
136
120
|
simplecov (~> 0.17.1)
|
|
137
121
|
truemail-client!
|
|
138
122
|
webmock (~> 3.8, >= 3.8.3)
|
data/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
# <img src='https://repository-images.githubusercontent.com/246571655/128eda80-63af-11ea-8a0e-d1a7b9043c29' height='250' alt='Truemail web API client library for Ruby' />
|
|
2
2
|
|
|
3
|
-
|
|
4
3
|
[](https://codeclimate.com/github/truemail-rb/truemail-ruby-client/maintainability) [](https://codeclimate.com/github/truemail-rb/truemail-ruby-client/test_coverage) [](https://circleci.com/gh/truemail-rb/truemail-ruby-client/tree/develop) [](https://badge.fury.io/rb/truemail-client) [](https://rubygems.org/gems/truemail-client) [](CODE_OF_CONDUCT.md)
|
|
5
4
|
|
|
6
|
-
`truemail-client` gem - Truemail web API client library for Ruby.
|
|
5
|
+
`truemail-client` gem - [Truemail web API](https://github.com/truemail-rb/truemail-rack) client library for Ruby.
|
|
7
6
|
|
|
8
7
|
## Table of Contents
|
|
9
8
|
|
|
@@ -39,7 +38,6 @@ Or install it yourself as:
|
|
|
39
38
|
|
|
40
39
|
To have an access for `Truemail::Client` you must configure it first as in the example below:
|
|
41
40
|
|
|
42
|
-
|
|
43
41
|
### Setting global configuration
|
|
44
42
|
|
|
45
43
|
```ruby
|
|
@@ -66,26 +64,24 @@ After successful configuration, you can establish connection with Truemail serve
|
|
|
66
64
|
|
|
67
65
|
```ruby
|
|
68
66
|
Truemail::Client.validate('admin@bestweb.com.ua')
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
}
|
|
88
|
-
}
|
|
67
|
+
=> {
|
|
68
|
+
"date": "2020-02-26 17:00:56 +0200",
|
|
69
|
+
"email": "admin@bestweb.com.ua",
|
|
70
|
+
"validation_type": "smtp",
|
|
71
|
+
"success": true,
|
|
72
|
+
"errors": null,
|
|
73
|
+
"smtp_debug": null,
|
|
74
|
+
"configuration": {
|
|
75
|
+
"validation_type_by_domain": null,
|
|
76
|
+
"whitelist_validation": false,
|
|
77
|
+
"whitelisted_domains": null,
|
|
78
|
+
"blacklisted_domains": null,
|
|
79
|
+
"smtp_safe_check": false,
|
|
80
|
+
"email_pattern": "default gem value",
|
|
81
|
+
"smtp_error_body_pattern": "default gem value",
|
|
82
|
+
"not_rfc_mx_lookup_flow": false
|
|
83
|
+
}
|
|
84
|
+
}
|
|
89
85
|
```
|
|
90
86
|
|
|
91
87
|
`Truemail::Client.validate` always returns JSON data. If something goes wrong you will receive JSON with error details:
|
|
@@ -104,7 +100,6 @@ After successful configuration, you can read current `Truemail::Client` configur
|
|
|
104
100
|
|
|
105
101
|
```ruby
|
|
106
102
|
Truemail::Client.configuration
|
|
107
|
-
|
|
108
103
|
=> #<Truemail::Client::Configuration:0x000055eafc588878
|
|
109
104
|
@host="example.com",
|
|
110
105
|
@port=80,
|
|
@@ -119,7 +114,6 @@ Truemail::Client.configuration.port = 8080
|
|
|
119
114
|
=> 8080
|
|
120
115
|
|
|
121
116
|
Truemail::Client.configuration
|
|
122
|
-
|
|
123
117
|
=> #<Truemail::Client::Configuration:0x000055eafc588878
|
|
124
118
|
@host="example.com",
|
|
125
119
|
@port=8080,
|
|
@@ -144,21 +138,13 @@ Truemail::Client.configuration
|
|
|
144
138
|
|
|
145
139
|
All Truemail extensions: https://github.com/truemail-rb
|
|
146
140
|
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
### truemail-rack-docker-image
|
|
156
|
-
|
|
157
|
-
Lightweight rack based web API [dockerized image](https://hub.docker.com/r/truemail/truemail-rack) :whale: of Truemail server, https://github.com/truemail-rb/truemail-rack-docker-image
|
|
158
|
-
|
|
159
|
-
### truemail-rspec
|
|
160
|
-
|
|
161
|
-
gem `truemail-rspec` - Truemail configuration and validator RSpec helpers, https://github.com/truemail-rb/truemail-rspec
|
|
141
|
+
| Name | Type | Description |
|
|
142
|
+
| --- | --- | --- |
|
|
143
|
+
| [truemail](https://github.com/rubygarage/truemail) | ruby gem | Configurable framework agnostic plain Ruby email validator, main core |
|
|
144
|
+
| [truemail server](https://github.com/truemail-rb/truemail-rack) | ruby app | Lightweight rack based web API wrapper for Truemail |
|
|
145
|
+
| [truemail-rack-docker](https://github.com/truemail-rb/truemail-rack-docker-image) | docker image | Lightweight rack based web API [dockerized image](https://hub.docker.com/r/truemail/truemail-rack) :whale: of Truemail server |
|
|
146
|
+
| [truemail-crystal-client](https://github.com/truemail-rb/truemail-crystal-client) | crystal shard | Truemail web API client library for Crystal |
|
|
147
|
+
| [truemail-rspec](https://github.com/truemail-rb/truemail-rspec) | ruby gem | Truemail configuration and validator RSpec helpers |
|
|
162
148
|
|
|
163
149
|
## Contributing
|
|
164
150
|
|
data/truemail-client.gemspec
CHANGED
|
@@ -24,18 +24,18 @@ Gem::Specification.new do |spec|
|
|
|
24
24
|
spec.require_paths = ['lib']
|
|
25
25
|
|
|
26
26
|
spec.add_development_dependency 'bundler', '~> 1.16'
|
|
27
|
-
spec.add_development_dependency 'bundler-audit', '~> 0.
|
|
28
|
-
spec.add_development_dependency 'fasterer', '~> 0.8.
|
|
29
|
-
spec.add_development_dependency 'ffaker', '~> 2.
|
|
27
|
+
spec.add_development_dependency 'bundler-audit', '~> 0.7.0.1'
|
|
28
|
+
spec.add_development_dependency 'fasterer', '~> 0.8.3'
|
|
29
|
+
spec.add_development_dependency 'ffaker', '~> 2.15'
|
|
30
30
|
spec.add_development_dependency 'json_matchers', '~> 0.11.1'
|
|
31
|
-
spec.add_development_dependency 'overcommit', '~> 0.
|
|
32
|
-
spec.add_development_dependency 'pry-byebug', '~> 3.
|
|
31
|
+
spec.add_development_dependency 'overcommit', '~> 0.55.0'
|
|
32
|
+
spec.add_development_dependency 'pry-byebug', '~> 3.9'
|
|
33
33
|
spec.add_development_dependency 'rake', '~> 13.0', '>= 13.0.1'
|
|
34
|
-
spec.add_development_dependency 'reek', '~>
|
|
34
|
+
spec.add_development_dependency 'reek', '~> 6.0', '>= 6.0.1'
|
|
35
35
|
spec.add_development_dependency 'rspec', '~> 3.9'
|
|
36
|
-
spec.add_development_dependency 'rubocop', '~> 0.
|
|
37
|
-
spec.add_development_dependency 'rubocop-performance', '~> 1.
|
|
38
|
-
spec.add_development_dependency 'rubocop-rspec', '~> 1.
|
|
36
|
+
spec.add_development_dependency 'rubocop', '~> 0.88.0'
|
|
37
|
+
spec.add_development_dependency 'rubocop-performance', '~> 1.7', '>= 1.7.1'
|
|
38
|
+
spec.add_development_dependency 'rubocop-rspec', '~> 1.42'
|
|
39
39
|
spec.add_development_dependency 'simplecov', '~> 0.17.1'
|
|
40
40
|
spec.add_development_dependency 'webmock', '~> 3.8', '>= 3.8.3'
|
|
41
41
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: truemail-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vladislav Trotsenko
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-07-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -30,42 +30,42 @@ dependencies:
|
|
|
30
30
|
requirements:
|
|
31
31
|
- - "~>"
|
|
32
32
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: 0.
|
|
33
|
+
version: 0.7.0.1
|
|
34
34
|
type: :development
|
|
35
35
|
prerelease: false
|
|
36
36
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
40
|
+
version: 0.7.0.1
|
|
41
41
|
- !ruby/object:Gem::Dependency
|
|
42
42
|
name: fasterer
|
|
43
43
|
requirement: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.8.
|
|
47
|
+
version: 0.8.3
|
|
48
48
|
type: :development
|
|
49
49
|
prerelease: false
|
|
50
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
51
|
requirements:
|
|
52
52
|
- - "~>"
|
|
53
53
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: 0.8.
|
|
54
|
+
version: 0.8.3
|
|
55
55
|
- !ruby/object:Gem::Dependency
|
|
56
56
|
name: ffaker
|
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
|
58
58
|
requirements:
|
|
59
59
|
- - "~>"
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '2.
|
|
61
|
+
version: '2.15'
|
|
62
62
|
type: :development
|
|
63
63
|
prerelease: false
|
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
65
|
requirements:
|
|
66
66
|
- - "~>"
|
|
67
67
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '2.
|
|
68
|
+
version: '2.15'
|
|
69
69
|
- !ruby/object:Gem::Dependency
|
|
70
70
|
name: json_matchers
|
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -86,28 +86,28 @@ dependencies:
|
|
|
86
86
|
requirements:
|
|
87
87
|
- - "~>"
|
|
88
88
|
- !ruby/object:Gem::Version
|
|
89
|
-
version: 0.
|
|
89
|
+
version: 0.55.0
|
|
90
90
|
type: :development
|
|
91
91
|
prerelease: false
|
|
92
92
|
version_requirements: !ruby/object:Gem::Requirement
|
|
93
93
|
requirements:
|
|
94
94
|
- - "~>"
|
|
95
95
|
- !ruby/object:Gem::Version
|
|
96
|
-
version: 0.
|
|
96
|
+
version: 0.55.0
|
|
97
97
|
- !ruby/object:Gem::Dependency
|
|
98
98
|
name: pry-byebug
|
|
99
99
|
requirement: !ruby/object:Gem::Requirement
|
|
100
100
|
requirements:
|
|
101
101
|
- - "~>"
|
|
102
102
|
- !ruby/object:Gem::Version
|
|
103
|
-
version: '3.
|
|
103
|
+
version: '3.9'
|
|
104
104
|
type: :development
|
|
105
105
|
prerelease: false
|
|
106
106
|
version_requirements: !ruby/object:Gem::Requirement
|
|
107
107
|
requirements:
|
|
108
108
|
- - "~>"
|
|
109
109
|
- !ruby/object:Gem::Version
|
|
110
|
-
version: '3.
|
|
110
|
+
version: '3.9'
|
|
111
111
|
- !ruby/object:Gem::Dependency
|
|
112
112
|
name: rake
|
|
113
113
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -134,14 +134,20 @@ dependencies:
|
|
|
134
134
|
requirements:
|
|
135
135
|
- - "~>"
|
|
136
136
|
- !ruby/object:Gem::Version
|
|
137
|
-
version: '
|
|
137
|
+
version: '6.0'
|
|
138
|
+
- - ">="
|
|
139
|
+
- !ruby/object:Gem::Version
|
|
140
|
+
version: 6.0.1
|
|
138
141
|
type: :development
|
|
139
142
|
prerelease: false
|
|
140
143
|
version_requirements: !ruby/object:Gem::Requirement
|
|
141
144
|
requirements:
|
|
142
145
|
- - "~>"
|
|
143
146
|
- !ruby/object:Gem::Version
|
|
144
|
-
version: '
|
|
147
|
+
version: '6.0'
|
|
148
|
+
- - ">="
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: 6.0.1
|
|
145
151
|
- !ruby/object:Gem::Dependency
|
|
146
152
|
name: rspec
|
|
147
153
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -162,54 +168,48 @@ dependencies:
|
|
|
162
168
|
requirements:
|
|
163
169
|
- - "~>"
|
|
164
170
|
- !ruby/object:Gem::Version
|
|
165
|
-
version: 0.
|
|
171
|
+
version: 0.88.0
|
|
166
172
|
type: :development
|
|
167
173
|
prerelease: false
|
|
168
174
|
version_requirements: !ruby/object:Gem::Requirement
|
|
169
175
|
requirements:
|
|
170
176
|
- - "~>"
|
|
171
177
|
- !ruby/object:Gem::Version
|
|
172
|
-
version: 0.
|
|
178
|
+
version: 0.88.0
|
|
173
179
|
- !ruby/object:Gem::Dependency
|
|
174
180
|
name: rubocop-performance
|
|
175
181
|
requirement: !ruby/object:Gem::Requirement
|
|
176
182
|
requirements:
|
|
177
183
|
- - "~>"
|
|
178
184
|
- !ruby/object:Gem::Version
|
|
179
|
-
version: '1.
|
|
185
|
+
version: '1.7'
|
|
180
186
|
- - ">="
|
|
181
187
|
- !ruby/object:Gem::Version
|
|
182
|
-
version: 1.
|
|
188
|
+
version: 1.7.1
|
|
183
189
|
type: :development
|
|
184
190
|
prerelease: false
|
|
185
191
|
version_requirements: !ruby/object:Gem::Requirement
|
|
186
192
|
requirements:
|
|
187
193
|
- - "~>"
|
|
188
194
|
- !ruby/object:Gem::Version
|
|
189
|
-
version: '1.
|
|
195
|
+
version: '1.7'
|
|
190
196
|
- - ">="
|
|
191
197
|
- !ruby/object:Gem::Version
|
|
192
|
-
version: 1.
|
|
198
|
+
version: 1.7.1
|
|
193
199
|
- !ruby/object:Gem::Dependency
|
|
194
200
|
name: rubocop-rspec
|
|
195
201
|
requirement: !ruby/object:Gem::Requirement
|
|
196
202
|
requirements:
|
|
197
203
|
- - "~>"
|
|
198
204
|
- !ruby/object:Gem::Version
|
|
199
|
-
version: '1.
|
|
200
|
-
- - ">="
|
|
201
|
-
- !ruby/object:Gem::Version
|
|
202
|
-
version: 1.38.1
|
|
205
|
+
version: '1.42'
|
|
203
206
|
type: :development
|
|
204
207
|
prerelease: false
|
|
205
208
|
version_requirements: !ruby/object:Gem::Requirement
|
|
206
209
|
requirements:
|
|
207
210
|
- - "~>"
|
|
208
211
|
- !ruby/object:Gem::Version
|
|
209
|
-
version: '1.
|
|
210
|
-
- - ">="
|
|
211
|
-
- !ruby/object:Gem::Version
|
|
212
|
-
version: 1.38.1
|
|
212
|
+
version: '1.42'
|
|
213
213
|
- !ruby/object:Gem::Dependency
|
|
214
214
|
name: simplecov
|
|
215
215
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -281,7 +281,7 @@ homepage: https://github.com/truemail-rb/truemail-ruby-client
|
|
|
281
281
|
licenses:
|
|
282
282
|
- MIT
|
|
283
283
|
metadata: {}
|
|
284
|
-
post_install_message:
|
|
284
|
+
post_install_message:
|
|
285
285
|
rdoc_options: []
|
|
286
286
|
require_paths:
|
|
287
287
|
- lib
|
|
@@ -296,9 +296,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
296
296
|
- !ruby/object:Gem::Version
|
|
297
297
|
version: '0'
|
|
298
298
|
requirements: []
|
|
299
|
-
rubyforge_project:
|
|
300
|
-
rubygems_version: 2.7.
|
|
301
|
-
signing_key:
|
|
299
|
+
rubyforge_project:
|
|
300
|
+
rubygems_version: 2.7.3
|
|
301
|
+
signing_key:
|
|
302
302
|
specification_version: 4
|
|
303
303
|
summary: truemail-client
|
|
304
304
|
test_files: []
|