dexkit 0.2.0 → 0.4.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 +29 -0
- data/README.md +105 -2
- data/Untitled +12 -0
- data/guides/llm/FORM.md +520 -0
- data/guides/llm/OPERATION.md +1 -1
- data/guides/llm/QUERY.md +348 -0
- data/lib/dex/form/nesting.rb +189 -0
- data/lib/dex/form/uniqueness_validator.rb +86 -0
- data/lib/dex/form.rb +142 -0
- data/lib/dex/operation.rb +3 -0
- data/lib/dex/query/backend.rb +91 -0
- data/lib/dex/query/filtering.rb +73 -0
- data/lib/dex/query/sorting.rb +95 -0
- data/lib/dex/query.rb +271 -0
- data/lib/dex/version.rb +1 -1
- data/lib/dexkit.rb +2 -0
- metadata +41 -3
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.
|
|
4
|
+
version: 0.4.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
|
|
97
|
-
|
|
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,11 @@ files:
|
|
|
104
132
|
- CHANGELOG.md
|
|
105
133
|
- LICENSE.txt
|
|
106
134
|
- README.md
|
|
135
|
+
- Untitled
|
|
107
136
|
- guides/llm/EVENT.md
|
|
137
|
+
- guides/llm/FORM.md
|
|
108
138
|
- guides/llm/OPERATION.md
|
|
139
|
+
- guides/llm/QUERY.md
|
|
109
140
|
- lib/dex/concern.rb
|
|
110
141
|
- lib/dex/error.rb
|
|
111
142
|
- lib/dex/event.rb
|
|
@@ -118,6 +149,9 @@ files:
|
|
|
118
149
|
- lib/dex/event/trace.rb
|
|
119
150
|
- lib/dex/event_test_helpers.rb
|
|
120
151
|
- lib/dex/event_test_helpers/assertions.rb
|
|
152
|
+
- lib/dex/form.rb
|
|
153
|
+
- lib/dex/form/nesting.rb
|
|
154
|
+
- lib/dex/form/uniqueness_validator.rb
|
|
121
155
|
- lib/dex/match.rb
|
|
122
156
|
- lib/dex/operation.rb
|
|
123
157
|
- lib/dex/operation/async_proxy.rb
|
|
@@ -136,6 +170,10 @@ files:
|
|
|
136
170
|
- lib/dex/operation/transaction_adapter.rb
|
|
137
171
|
- lib/dex/operation/transaction_wrapper.rb
|
|
138
172
|
- lib/dex/props_setup.rb
|
|
173
|
+
- lib/dex/query.rb
|
|
174
|
+
- lib/dex/query/backend.rb
|
|
175
|
+
- lib/dex/query/filtering.rb
|
|
176
|
+
- lib/dex/query/sorting.rb
|
|
139
177
|
- lib/dex/ref_type.rb
|
|
140
178
|
- lib/dex/test_helpers.rb
|
|
141
179
|
- lib/dex/test_helpers/assertions.rb
|