smtp_mock 1.2.0 → 1.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: 61d44a5dae5f6ba3f2a8b9dfea9ef79f66d87cc229d0f2b67351e93898e81c99
4
- data.tar.gz: 211930e92b9075fb4d0afbb70729814344752ceb5a8839408f4d0e24449cae0e
3
+ metadata.gz: 70712db1d51d5327492ecb730f29e5019b68c33529c81bdacc96422917dcae1d
4
+ data.tar.gz: e70d2ea9e434ee4242e5ad9317894cec1ff89afa2e49e549554c68dae1ed6828
5
5
  SHA512:
6
- metadata.gz: 8d3615059b8c883c0cb3fb71be0bcabb7bdd1c31489d2e2c2585aaa81823f83f6386dfaff15b17854bc22ffd7224514e15765a52556c8e5a08cc6d55d969da3c
7
- data.tar.gz: 4a58ac1a1e53a7b04f204dae54ee57d572189d02f2a09b0c73cd3d3e76ccddd86bd7dda95dc1e00a10b7411cbb704c8801c7e8285507bda915a0f8538dd0761e
6
+ metadata.gz: 38dd0ed89c25be25121fcfc4ddeb3261ba3cc3e75517510830b828ea895a662e273d11b2450bf1fe116f865f815ba19e59969a07cc2e44255bb8818a213adad4
7
+ data.tar.gz: 4755aa41982aacac8bf45935e69928d7379185b38e8049fe377d3be2ea8769b1d3e6a019d08f5e6d7daa31e6e0b9c89b7b9139b47b24d57c8e80aa8025b6a82f
data/CHANGELOG.md CHANGED
@@ -2,13 +2,23 @@
2
2
 
3
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).
4
4
 
5
+ ## [1.2.1] - 2022-07-27
6
+
7
+ ### Fixed
8
+
9
+ - Fixed documentation
10
+
11
+ ### Updated
12
+
13
+ - Updated gem documentation, version
14
+
5
15
  ## [1.2.0] - 2022-07-27
6
16
 
7
17
  ### Added
8
18
 
9
- - Ability to use `RSET` SMTP command
10
- - Ability to configure multiple message receiving flow during one session
11
- - Ability to configure SMTP command delay responses
19
+ - Added ability to use `RSET` SMTP command
20
+ - Added ability to configure multiple message receiving flow during one session
21
+ - Added ability to configure SMTP command delay responses
12
22
 
13
23
  ### Updated
14
24
 
data/README.md CHANGED
@@ -95,7 +95,7 @@ This gem includes easy system dependency manager. Run `bundle exec smtp_mock` wi
95
95
  | `session_timeout: 60` | Session timeout in seconds. It's equal to 30 seconds by default |
96
96
  | `shutdown_timeout: 5` | Graceful shutdown timeout in seconds. It's equal to 1 second by default |
97
97
  | `fail_fast: true` | Enables fail fast scenario. Disabled by default |
98
- | `multipleMessageReceiving: true` | Enables multiple message receiving scenario. Disabled by default |
98
+ | `multiple_message_receiving: true` | Enables multiple message receiving scenario. Disabled by default |
99
99
  | `blacklisted_helo_domains: %w[a.com b.com]` | Blacklisted `HELO` domains |
100
100
  | `blacklisted_mailfrom_emails: %w[a@a.com b@b.com]` | Blacklisted `MAIL FROM` emails |
101
101
  | `blacklisted_rcptto_emails: %w[c@c.com d@d.com]` | blacklisted `RCPT TO` emails |
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SmtpMock
4
- VERSION = '1.2.0'
4
+ VERSION = '1.2.1'
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: smtp_mock
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vladislav Trotsenko