Releases: dry-rb/dry-matcher
Releases · dry-rb/dry-matcher
v1.0.0
v0.10.0
Added
- MaybeMatcher for matching against Maybe values from dry-monads (@gabfssilva) in #33
Changed
- This version is compatible with recently released dry-rb dependencies (@flash-gordon)
v0.9.0
v0.8.3
0.8.3 / 2020-01-07
Fixed
- Delegation warnings about keyword arguments (flash-gordon)
v0.8.2
0.8.2 / 2019-09-06
Fixed
- Minimal dry-core version set to 0.4.8 (flash-gordon)
v0.8.1
0.8.1 / 2019-08-13
Added
Dry::Matcher#for
is a shortcut forDry::Matcher.for(..., with: matcher)
(flash-gordon)require 'dry/matcher/result_matcher' class CreateUser include Dry::Matcher::ResultMatcher.for(:call) def call(...) # code returning an instance of Dry::Monads::Result end end