dry-matcher 0.10.0 → 1.0.0
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 +13 -0
- data/LICENSE +1 -1
- data/README.md +3 -11
- data/dry-matcher.gemspec +1 -1
- data/lib/dry/matcher/version.rb +1 -1
- metadata +12 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e15710ea8633875555598d31ceab3d2641338ee7cbcb637f97fd707df05c05c2
|
|
4
|
+
data.tar.gz: c946fa6d1670575a51df6a9c18ee1ab561e0d932a64938b2acb61c5e8486bc22
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 941a39cfa94574429caf39efdaf2670f41bcdf6043ad64f7417d68ad97ea66f78b33990b9ed51a5d6fefd43ab75c7ffc0fe12a97d41a97bc7804271746f7e6f8
|
|
7
|
+
data.tar.gz: 33df73d85c7bb1c11d66a1b33b22d90025cf5efb27c0e42125d014861cc224915ee02ca87b0040f6b2576beee80dc85fcfd8ae5c96554c39636e93e57c386f4c
|
data/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
<!--- DO NOT EDIT THIS FILE - IT'S AUTOMATICALLY GENERATED VIA DEVTOOLS --->
|
|
2
2
|
|
|
3
|
+
## 1.0.0 2023-01-01
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
- Update dry-core dependency (via #34) (@pnomolos)
|
|
9
|
+
|
|
10
|
+
[Compare v0.10.0...v1.0.0](https://github.com/dry-rb/dry-matcher/compare/v0.10.0...v1.0.0)
|
|
11
|
+
|
|
3
12
|
## 0.10.0 2022-11-16
|
|
4
13
|
|
|
5
14
|
|
|
15
|
+
### Added
|
|
16
|
+
|
|
17
|
+
- MaybeMatcher for matching against Maybe values from dry-monads (@gabfssilva) in #33
|
|
18
|
+
|
|
6
19
|
### Changed
|
|
7
20
|
|
|
8
21
|
- This version is compatible with recently released dry-rb dependencies (@flash-gordon)
|
data/LICENSE
CHANGED
data/README.md
CHANGED
|
@@ -1,29 +1,21 @@
|
|
|
1
1
|
<!--- this file is synced from dry-rb/template-gem project -->
|
|
2
2
|
[gem]: https://rubygems.org/gems/dry-matcher
|
|
3
3
|
[actions]: https://github.com/dry-rb/dry-matcher/actions
|
|
4
|
-
[codacy]: https://www.codacy.com/gh/dry-rb/dry-matcher
|
|
5
|
-
[chat]: https://dry-rb.zulipchat.com
|
|
6
|
-
[inchpages]: http://inch-ci.org/github/dry-rb/dry-matcher
|
|
7
4
|
|
|
8
|
-
# dry-matcher [][gem]
|
|
11
|
-
[][actions]
|
|
12
|
-
[][codacy]
|
|
13
|
-
[][codacy]
|
|
14
|
-
[][inchpages]
|
|
5
|
+
# dry-matcher [][gem] [][actions]
|
|
15
6
|
|
|
16
7
|
## Links
|
|
17
8
|
|
|
18
9
|
* [User documentation](https://dry-rb.org/gems/dry-matcher)
|
|
19
10
|
* [API documentation](http://rubydoc.info/gems/dry-matcher)
|
|
11
|
+
* [Forum](https://discourse.dry-rb.org)
|
|
20
12
|
|
|
21
13
|
## Supported Ruby versions
|
|
22
14
|
|
|
23
15
|
This library officially supports the following Ruby versions:
|
|
24
16
|
|
|
25
17
|
* MRI `>= 2.7.0`
|
|
26
|
-
* jruby `>= 9.
|
|
18
|
+
* jruby `>= 9.4` (not tested on CI)
|
|
27
19
|
|
|
28
20
|
## License
|
|
29
21
|
|
data/dry-matcher.gemspec
CHANGED
|
@@ -29,7 +29,7 @@ Gem::Specification.new do |spec|
|
|
|
29
29
|
spec.required_ruby_version = ">= 2.7.0"
|
|
30
30
|
|
|
31
31
|
# to update dependencies edit project.yml
|
|
32
|
-
spec.add_runtime_dependency "dry-core", "~> 1.0"
|
|
32
|
+
spec.add_runtime_dependency "dry-core", "~> 1.0", "< 2"
|
|
33
33
|
|
|
34
34
|
spec.add_development_dependency "rake"
|
|
35
35
|
end
|
data/lib/dry/matcher/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dry-matcher
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 1.0.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Riley
|
|
8
8
|
- Nikita Shilnikov
|
|
9
|
-
autorequire:
|
|
9
|
+
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2023-01-01 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: dry-core
|
|
@@ -18,6 +18,9 @@ dependencies:
|
|
|
18
18
|
- - "~>"
|
|
19
19
|
- !ruby/object:Gem::Version
|
|
20
20
|
version: '1.0'
|
|
21
|
+
- - "<"
|
|
22
|
+
- !ruby/object:Gem::Version
|
|
23
|
+
version: '2'
|
|
21
24
|
type: :runtime
|
|
22
25
|
prerelease: false
|
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -25,6 +28,9 @@ dependencies:
|
|
|
25
28
|
- - "~>"
|
|
26
29
|
- !ruby/object:Gem::Version
|
|
27
30
|
version: '1.0'
|
|
31
|
+
- - "<"
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '2'
|
|
28
34
|
- !ruby/object:Gem::Dependency
|
|
29
35
|
name: rake
|
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -68,7 +74,7 @@ metadata:
|
|
|
68
74
|
changelog_uri: https://github.com/dry-rb/dry-matcher/blob/main/CHANGELOG.md
|
|
69
75
|
source_code_uri: https://github.com/dry-rb/dry-matcher
|
|
70
76
|
bug_tracker_uri: https://github.com/dry-rb/dry-matcher/issues
|
|
71
|
-
post_install_message:
|
|
77
|
+
post_install_message:
|
|
72
78
|
rdoc_options: []
|
|
73
79
|
require_paths:
|
|
74
80
|
- lib
|
|
@@ -83,8 +89,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
83
89
|
- !ruby/object:Gem::Version
|
|
84
90
|
version: '0'
|
|
85
91
|
requirements: []
|
|
86
|
-
rubygems_version: 3.1
|
|
87
|
-
signing_key:
|
|
92
|
+
rubygems_version: 3.4.1
|
|
93
|
+
signing_key:
|
|
88
94
|
specification_version: 4
|
|
89
95
|
summary: Flexible, expressive pattern matching for Ruby
|
|
90
96
|
test_files: []
|