dexkit 0.1.0 → 0.3.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,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dexkit
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jacek Galanciak
@@ -9,6 +9,20 @@ bindir: exe
9
9
  cert_chain: []
10
10
  date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: activemodel
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '6.1'
19
+ type: :runtime
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - ">="
24
+ - !ruby/object:Gem::Version
25
+ version: '6.1'
12
26
  - !ruby/object:Gem::Dependency
13
27
  name: literal
14
28
  requirement: !ruby/object:Gem::Requirement
@@ -65,6 +79,20 @@ dependencies:
65
79
  - - ">="
66
80
  - !ruby/object:Gem::Version
67
81
  version: '6.1'
82
+ - !ruby/object:Gem::Dependency
83
+ name: actionpack
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '6.1'
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '6.1'
68
96
  - !ruby/object:Gem::Dependency
69
97
  name: activerecord
70
98
  requirement: !ruby/object:Gem::Requirement
@@ -93,8 +121,8 @@ dependencies:
93
121
  - - ">="
94
122
  - !ruby/object:Gem::Version
95
123
  version: '2.1'
96
- description: 'A toolbelt of patterns for your Rails applications: Operation (more
97
- coming soon)'
124
+ description: 'A toolbelt of patterns for your Rails applications: Operation, Event,
125
+ Form'
98
126
  email:
99
127
  - jacek.galanciak@gmail.com
100
128
  executables: []
@@ -104,8 +132,24 @@ files:
104
132
  - CHANGELOG.md
105
133
  - LICENSE.txt
106
134
  - README.md
135
+ - guides/llm/EVENT.md
136
+ - guides/llm/FORM.md
107
137
  - guides/llm/OPERATION.md
138
+ - lib/dex/concern.rb
108
139
  - lib/dex/error.rb
140
+ - lib/dex/event.rb
141
+ - lib/dex/event/bus.rb
142
+ - lib/dex/event/execution_state.rb
143
+ - lib/dex/event/handler.rb
144
+ - lib/dex/event/metadata.rb
145
+ - lib/dex/event/processor.rb
146
+ - lib/dex/event/suppression.rb
147
+ - lib/dex/event/trace.rb
148
+ - lib/dex/event_test_helpers.rb
149
+ - lib/dex/event_test_helpers/assertions.rb
150
+ - lib/dex/form.rb
151
+ - lib/dex/form/nesting.rb
152
+ - lib/dex/form/uniqueness_validator.rb
109
153
  - lib/dex/match.rb
110
154
  - lib/dex/operation.rb
111
155
  - lib/dex/operation/async_proxy.rb
@@ -115,7 +159,6 @@ files:
115
159
  - lib/dex/operation/lock_wrapper.rb
116
160
  - lib/dex/operation/outcome.rb
117
161
  - lib/dex/operation/pipeline.rb
118
- - lib/dex/operation/props_setup.rb
119
162
  - lib/dex/operation/record_backend.rb
120
163
  - lib/dex/operation/record_wrapper.rb
121
164
  - lib/dex/operation/rescue_wrapper.rb
@@ -124,12 +167,14 @@ files:
124
167
  - lib/dex/operation/settings.rb
125
168
  - lib/dex/operation/transaction_adapter.rb
126
169
  - lib/dex/operation/transaction_wrapper.rb
170
+ - lib/dex/props_setup.rb
127
171
  - lib/dex/ref_type.rb
128
172
  - lib/dex/test_helpers.rb
129
173
  - lib/dex/test_helpers/assertions.rb
130
174
  - lib/dex/test_helpers/execution.rb
131
175
  - lib/dex/test_helpers/stubbing.rb
132
176
  - lib/dex/test_log.rb
177
+ - lib/dex/type_coercion.rb
133
178
  - lib/dex/version.rb
134
179
  - lib/dexkit.rb
135
180
  homepage: https://github.com/razorjack/dexkit