truemail-rspec 0.2.0 → 0.2.1

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: c7de32a7986443299d54b09e4c667a7c0c25fb883105d33d24a9730cd1fa2766
4
- data.tar.gz: 9d73fda356b527a5120e2b382e228ad6413632b06ffb457e436d63f8b3914bf8
3
+ metadata.gz: 25654d72a64c056f8f7d10485911e50c8eb953034229491b0c7a1b603fcf5255
4
+ data.tar.gz: be07854c0f5d8f48a35bd7f50f4150104535e2ed214080509df20fed7000db6b
5
5
  SHA512:
6
- metadata.gz: 1bd7ca83b7b7d99e87f1726a1304cd56c5657d497e7051ec2ad47d1e58722bf487ca5be92c86f1723a759e7966342c1da095acb279fb533ea2959a8d9903fe0f
7
- data.tar.gz: 3c2966b0c7afc2dfa247c8510e17cef99d7aff4a563c334ae48356523437f266567b94c4bfd29d6e0f45958c3704b89b8668e2b0c03a9862fbe0e20102e98a7a
6
+ metadata.gz: b52e2bde2d1234bc10e0c7bdae8011387ce850698c43a7aa8b0a49153417f61b5885cc93c63ecf95652ed9ba9fa2d72ff579c112c97cc31497457ff5989a5aef
7
+ data.tar.gz: a4194c3a7cc0392881c551f740d99815e5d9ee540ced372d9a7e59b2c24107c68de380c567ca0abf3cdd18fd55d5cf6fe6b7b8ae221c02f17bb1751c2d8ef5ca
@@ -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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- truemail-rspec (0.2.0)
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.8.0)
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
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Truemail
4
4
  module RSpec
5
- VERSION = '0.2.0'
5
+ VERSION = '0.2.1'
6
6
  end
7
7
  end
@@ -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.0
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-08-31 00:00:00.000000000 Z
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: []