bcdd-result 0.9.1 → 0.10.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.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bcdd-result
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.1
4
+ version: 0.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Rodrigo Serradura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-12-12 00:00:00.000000000 Z
11
+ date: 2023-12-31 00:00:00.000000000 Z
12
12
  dependencies: []
13
13
  description: Empower Ruby apps with pragmatic use of Result pattern (monad), Railway
14
14
  Oriented Programming, and B/CDD.
@@ -29,9 +29,12 @@ files:
29
29
  - lib/bcdd-result.rb
30
30
  - lib/bcdd/result.rb
31
31
  - lib/bcdd/result/config.rb
32
- - lib/bcdd/result/config/constant_alias.rb
33
32
  - lib/bcdd/result/config/options.rb
34
33
  - lib/bcdd/result/config/switcher.rb
34
+ - lib/bcdd/result/config/switchers/addons.rb
35
+ - lib/bcdd/result/config/switchers/constant_aliases.rb
36
+ - lib/bcdd/result/config/switchers/features.rb
37
+ - lib/bcdd/result/config/switchers/pattern_matching.rb
35
38
  - lib/bcdd/result/context.rb
36
39
  - lib/bcdd/result/context/expectations.rb
37
40
  - lib/bcdd/result/context/expectations/mixin.rb
@@ -57,8 +60,23 @@ files:
57
60
  - lib/bcdd/result/mixin.rb
58
61
  - lib/bcdd/result/success.rb
59
62
  - lib/bcdd/result/success/methods.rb
63
+ - lib/bcdd/result/transitions.rb
64
+ - lib/bcdd/result/transitions/tracking.rb
65
+ - lib/bcdd/result/transitions/tracking/disabled.rb
66
+ - lib/bcdd/result/transitions/tracking/enabled.rb
67
+ - lib/bcdd/result/transitions/tree.rb
60
68
  - lib/bcdd/result/version.rb
61
69
  - sig/bcdd/result.rbs
70
+ - sig/bcdd/result/config.rbs
71
+ - sig/bcdd/result/context.rbs
72
+ - sig/bcdd/result/contract.rbs
73
+ - sig/bcdd/result/data.rbs
74
+ - sig/bcdd/result/error.rbs
75
+ - sig/bcdd/result/expectations.rbs
76
+ - sig/bcdd/result/handler.rbs
77
+ - sig/bcdd/result/mixin.rbs
78
+ - sig/bcdd/result/transitions.rbs
79
+ - sig/bcdd/result/version.rbs
62
80
  homepage: https://github.com/b-cdd/result
63
81
  licenses:
64
82
  - MIT
@@ -83,7 +101,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
83
101
  - !ruby/object:Gem::Version
84
102
  version: '0'
85
103
  requirements: []
86
- rubygems_version: 3.4.19
104
+ rubygems_version: 3.5.3
87
105
  signing_key:
88
106
  specification_version: 4
89
107
  summary: Empower Ruby apps with pragmatic use of Result pattern (monad), Railway Oriented