truemail-rspec 0.2.0 → 0.2.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/CHANGELOG.md +8 -0
- data/Gemfile.lock +2 -2
- data/README.md +2 -0
- data/lib/truemail/rspec/configuration_helper.rb +1 -1
- data/lib/truemail/rspec/version.rb +1 -1
- data/truemail-rspec.gemspec +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 25654d72a64c056f8f7d10485911e50c8eb953034229491b0c7a1b603fcf5255
|
4
|
+
data.tar.gz: be07854c0f5d8f48a35bd7f50f4150104535e2ed214080509df20fed7000db6b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b52e2bde2d1234bc10e0c7bdae8011387ce850698c43a7aa8b0a49153417f61b5885cc93c63ecf95652ed9ba9fa2d72ff579c112c97cc31497457ff5989a5aef
|
7
|
+
data.tar.gz: a4194c3a7cc0392881c551f740d99815e5d9ee540ced372d9a7e59b2c24107c68de380c567ca0abf3cdd18fd55d5cf6fe6b7b8ae221c02f17bb1751c2d8ef5ca
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,14 @@
|
|
1
1
|
# Changelog
|
2
2
|
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
3
|
|
4
|
+
## [0.2.1] - 2020-09-21
|
5
|
+
|
6
|
+
### Changed
|
7
|
+
|
8
|
+
Migrated to updated Ruby 2.7.x syntax.
|
9
|
+
|
10
|
+
- Updated `Truemail::RSpec::ConfigurationHelper`
|
11
|
+
|
4
12
|
## [0.2.0] - 2020-08-31
|
5
13
|
|
6
14
|
### Added
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
truemail-rspec (0.2.
|
4
|
+
truemail-rspec (0.2.1)
|
5
5
|
rspec (~> 3.9)
|
6
6
|
truemail (~> 1.4, >= 1.4.1)
|
7
7
|
|
@@ -88,7 +88,7 @@ GEM
|
|
88
88
|
simpleidn (0.1.1)
|
89
89
|
unf (~> 0.1.4)
|
90
90
|
thor (1.0.1)
|
91
|
-
truemail (1.
|
91
|
+
truemail (1.9.0)
|
92
92
|
simpleidn (~> 0.1.1)
|
93
93
|
unf (0.1.4)
|
94
94
|
unf_ext
|
data/README.md
CHANGED
@@ -4,6 +4,8 @@
|
|
4
4
|
|
5
5
|
`truemail-rspec` gem helps you create `Truemail::Configuration` and `Truemail::Validator` instances for your RSpec environment.
|
6
6
|
|
7
|
+
> Actual and maintainable documentation :books: for developers is living [here](https://truemail-rb.org/truemail-rspec).
|
8
|
+
|
7
9
|
## Table of Contents
|
8
10
|
|
9
11
|
- [Features](#features)
|
@@ -13,7 +13,7 @@ module Truemail
|
|
13
13
|
|
14
14
|
def create_configuration(**configuration_settings)
|
15
15
|
configuration_settings[:verifier_email] = FFaker::Internet.email unless configuration_settings[:verifier_email]
|
16
|
-
Truemail::Configuration.new(&configuration_block(configuration_settings))
|
16
|
+
Truemail::Configuration.new(&configuration_block(**configuration_settings))
|
17
17
|
end
|
18
18
|
end
|
19
19
|
end
|
data/truemail-rspec.gemspec
CHANGED
@@ -20,7 +20,7 @@ Gem::Specification.new do |spec|
|
|
20
20
|
'homepage_uri' => 'https://truemail-rb.org',
|
21
21
|
'changelog_uri' => 'https://github.com/truemail-rb/truemail-rspec/blob/master/CHANGELOG.md',
|
22
22
|
'source_code_uri' => 'https://github.com/truemail-rb/truemail-rspec',
|
23
|
-
'documentation_uri' => 'https://truemail-rb.org/truemail-rspec
|
23
|
+
'documentation_uri' => 'https://truemail-rb.org/truemail-rspec',
|
24
24
|
'bug_tracker_uri' => 'https://github.com/truemail-rb/truemail-rspec/issues'
|
25
25
|
}
|
26
26
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: truemail-rspec
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vladislav Trotsenko
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -291,7 +291,7 @@ metadata:
|
|
291
291
|
homepage_uri: https://truemail-rb.org
|
292
292
|
changelog_uri: https://github.com/truemail-rb/truemail-rspec/blob/master/CHANGELOG.md
|
293
293
|
source_code_uri: https://github.com/truemail-rb/truemail-rspec
|
294
|
-
documentation_uri: https://truemail-rb.org/truemail-rspec
|
294
|
+
documentation_uri: https://truemail-rb.org/truemail-rspec
|
295
295
|
bug_tracker_uri: https://github.com/truemail-rb/truemail-rspec/issues
|
296
296
|
post_install_message:
|
297
297
|
rdoc_options: []
|