rom 5.1.2 → 5.2.5
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 +145 -115
- data/LICENSE +17 -17
- data/README.md +5 -6
- data/lib/rom/version.rb +1 -1
- metadata +28 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bc47101293d7a3fc160ffd01bf311ec6252bcc48559f6768648c7e7e1d741387
|
|
4
|
+
data.tar.gz: 20315f7c7ba3b38b8e2f0ecc03c9fe4df035fe15b8958969278bcd0b12af841b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a9ab8ed3af4b83aa6f11a4f0e04932ef53ded069287162b3130e2a79db7c9594e27075da4934e3590c65c5c912d2932ff3e85cd04387421ee6c3def8a4a92bd6
|
|
7
|
+
data.tar.gz: dba973b1c48bc47560b933ad7bf4e383420ec2a8682800659d08383472683e7a41e65f8f450c947fc6d224f518c6ef86406c39d49fb888ec40d2be4a29cd7fab
|
data/CHANGELOG.md
CHANGED
|
@@ -1,226 +1,256 @@
|
|
|
1
|
-
|
|
1
|
+
## 5.2.5 2020-12-30
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
### Fixed
|
|
4
|
+
|
|
5
|
+
- [rom-core] auto-registration sorts files now which fixes some (rare) issues with file loading (@v-kolesnikov)
|
|
6
|
+
- [rom-core] configuration values are no longer being frozen during finalization of the setup (@v-kolesnikov)
|
|
4
7
|
|
|
5
8
|
### Changed
|
|
6
9
|
|
|
7
|
-
|
|
10
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.2.4` (@solnic)
|
|
8
11
|
|
|
9
|
-
|
|
12
|
+
[Compare v5.2.4...v5.2.5](https://github.com/rom-rb/rom/compare/v5.2.4...v5.2.5)
|
|
10
13
|
|
|
11
|
-
|
|
14
|
+
## 5.2.4 2020-05-08
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
12
17
|
|
|
13
|
-
|
|
14
|
-
* Filtering out duplicated combine nodes should no longer cause performance issues (@solnic)
|
|
15
|
-
* Relation names are properly equalized now (@solnic)
|
|
16
|
-
* Inferring class name for auto-structs works correctly with `:statuses` and `:aliases` relation names (@solnic)
|
|
18
|
+
- [rom] Dependency on `rom-changeset` was bumped to `>= 5.2.3` (@flash-gordon)
|
|
17
19
|
|
|
18
|
-
|
|
20
|
+
[Compare v5.2.3...v5.2.4](https://github.com/rom-rb/rom/compare/v5.2.3...v5.2.4)
|
|
19
21
|
|
|
20
|
-
|
|
22
|
+
## 5.2.3 2020-05-07
|
|
21
23
|
|
|
22
|
-
|
|
24
|
+
### Fixed
|
|
23
25
|
|
|
24
|
-
|
|
26
|
+
- [rom-core] Fix duplicated input processing in update commands (see #594) (@flash-gordon)
|
|
27
|
+
- [rom-changeset] fix binding mapping functions in `Update` changesets (@timriley & @flash-gordon)
|
|
25
28
|
|
|
26
29
|
### Changed
|
|
27
30
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
[Compare v5.1.1...v5.1.2](https://github.com/rom-rb/rom/compare/v5.1.1...v5.1.2)
|
|
31
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.2.3` (@solnic)
|
|
31
32
|
|
|
32
|
-
|
|
33
|
+
[Compare v5.2.2...v5.2.3](https://github.com/rom-rb/rom/compare/v5.2.2...v5.2.3)
|
|
33
34
|
|
|
34
|
-
##
|
|
35
|
+
## 5.2.2 2020-02-03
|
|
35
36
|
|
|
36
|
-
### Changed
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
### Added
|
|
39
39
|
|
|
40
|
-
|
|
40
|
+
- [rom-repository] `Repository#transaction` accepts transaction options now (@ianks)
|
|
41
41
|
|
|
42
42
|
### Fixed
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
- [rom-core] Constructor types were fired twice when writing data (@flash-gordon)
|
|
45
45
|
|
|
46
|
-
## rom-changeset
|
|
47
46
|
|
|
48
|
-
|
|
47
|
+
[Compare v5.2.1...v5.2.2](https://github.com/rom-rb/rom/compare/v5.2.1...v5.2.2)
|
|
49
48
|
|
|
50
|
-
|
|
49
|
+
## 5.2.1 2020-01-11
|
|
51
50
|
|
|
52
|
-
|
|
51
|
+
This release contains keyword fixes reported by Ruby 2.7.
|
|
53
52
|
|
|
54
|
-
### Changed
|
|
55
53
|
|
|
56
|
-
|
|
54
|
+
[Compare v5.2.0...v5.2.1](https://github.com/rom-rb/rom/compare/v5.2.0...v5.2.1)
|
|
57
55
|
|
|
58
|
-
|
|
56
|
+
## 5.2.0 2020-01-11
|
|
59
57
|
|
|
60
|
-
|
|
58
|
+
Yanked and republished as 5.2.1
|
|
61
59
|
|
|
62
|
-
## rom-core
|
|
63
60
|
|
|
64
|
-
|
|
61
|
+
[Compare v5.1.2...v5.2.0](https://github.com/rom-rb/rom/compare/v5.1.2...v5.2.0)
|
|
62
|
+
|
|
63
|
+
## 5.1.2 2019-08-17
|
|
65
64
|
|
|
66
|
-
* `ROM::Transformer.map` shortcut for defining transformations (@solnic)
|
|
67
|
-
* `ROM::Transformer` supports instance methods as mapping functions now (@solnic)
|
|
68
|
-
* `ROM::Transformer` configuration can be now inlined ie `relation :users, as: :json_serializer` (@solnic)
|
|
69
65
|
|
|
70
66
|
### Fixed
|
|
71
67
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
68
|
+
- [rom-core] Filtering out duplicated combine nodes works correctly with aliased nodes (@solnic)
|
|
69
|
+
- [rom-core] Filtering out duplicated combine nodes should no longer cause performance issues (@solnic)
|
|
70
|
+
- [rom-core] Relation names are properly equalized now (@solnic)
|
|
71
|
+
- [rom-core] Inferring class name for auto-structs works correctly with `:statuses` and `:aliases` relation names (@solnic)
|
|
75
72
|
|
|
76
73
|
### Changed
|
|
77
74
|
|
|
78
|
-
|
|
75
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
76
|
+
- [rom-changeset] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
77
|
+
- [rom-repository] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
79
78
|
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
### Added
|
|
79
|
+
[Compare v5.1.1...v5.1.2](https://github.com/rom-rb/rom/compare/v5.1.1...v5.1.2)
|
|
83
80
|
|
|
84
|
-
|
|
85
|
-
* Support for `command_options` in changesets for providing any additional command options (@solnic)
|
|
86
|
-
* Support for `command_plugins` in changesets for enabling command plugins and configuring them (@solnic)
|
|
81
|
+
## 5.1.1 2019-08-06
|
|
87
82
|
|
|
88
|
-
## rom-repository
|
|
89
83
|
|
|
90
|
-
###
|
|
84
|
+
### Changed
|
|
91
85
|
|
|
92
|
-
|
|
86
|
+
- [rom-core] Loading the gem no longer crashes in the absence of `rom` gem (issue #560) (@solnic)
|
|
87
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
88
|
+
- [rom-changeset] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
89
|
+
- [rom-repository] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
93
90
|
|
|
94
|
-
[Compare v5.0
|
|
91
|
+
[Compare v5.1.0...v5.1.1](https://github.com/rom-rb/rom/compare/v5.1.0...v5.1.1)
|
|
95
92
|
|
|
96
|
-
|
|
93
|
+
## 5.1.0 2019-07-30
|
|
97
94
|
|
|
98
|
-
## rom
|
|
99
95
|
|
|
100
|
-
|
|
101
|
-
* Dependency on `rom-changeset` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
96
|
+
### Added
|
|
102
97
|
|
|
103
|
-
|
|
98
|
+
- [rom-core] `ROM::Transformer.map` shortcut for defining transformations (@solnic)
|
|
99
|
+
- [rom-core] `ROM::Transformer` supports instance methods as mapping functions now (@solnic)
|
|
100
|
+
- [rom-core] `ROM::Transformer` configuration can be now inlined ie `relation :users, as: :json_serializer` (@solnic)
|
|
101
|
+
- [rom-changeset] Plugin API :tada: (@solnic)
|
|
102
|
+
- [rom-changeset] Support for `command_options` in changesets for providing any additional command options (@solnic)
|
|
103
|
+
- [rom-changeset] Support for `command_plugins` in changesets for enabling command plugins and configuring them (@solnic)
|
|
104
|
+
- [rom-repository] Plugin API :tada: (@flash-gordon)
|
|
104
105
|
|
|
105
106
|
### Fixed
|
|
106
107
|
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
## rom-changeset 5.0.1
|
|
108
|
+
- [rom-core] Combining same relation multiple times no longer crashes auto-mapping (fixes #547) (@solnic)
|
|
109
|
+
- [rom-core] `ROM::Transformer` works correctly with inheritance (@solnic)
|
|
110
|
+
- [rom-core] `CommandCompiler` supports command options correctly now (@solnic)
|
|
111
111
|
|
|
112
112
|
### Changed
|
|
113
113
|
|
|
114
|
-
|
|
115
|
-
* Passing an array to `Changeset#associate` will raise a meaningful `NotImplementedError` now (solnic)
|
|
114
|
+
- [rom-core] Plugin API has been generalized to enable arbitrary component plugins (@flash-gordon)
|
|
116
115
|
|
|
117
|
-
|
|
116
|
+
[Compare v5.0.2...v5.1.0](https://github.com/rom-rb/rom/compare/v5.0.2...v5.1.0)
|
|
118
117
|
|
|
119
|
-
|
|
118
|
+
## 5.0.2 2019-05-01
|
|
120
119
|
|
|
121
|
-
[Compare v5.0.1...v5.0.2](https://github.com/rom-rb/rom/compare/v5.0.1...v5.0.2)
|
|
122
120
|
|
|
123
|
-
|
|
121
|
+
### Fixed
|
|
124
122
|
|
|
125
|
-
|
|
123
|
+
- [rom-core] Forwarding to `root` in `Relation::Combined` behaves as expected when another combined relation was returned from the root (issue #525) (solnic)
|
|
124
|
+
- [rom-core] Specifying attribute options as the third argument in `attribute` DSL works again (issue #540) (solnic)
|
|
126
125
|
|
|
127
|
-
|
|
126
|
+
### Changed
|
|
128
127
|
|
|
129
|
-
|
|
128
|
+
- [rom] Dependency on `rom-core` was bumped to `~> 5.0`, `>= 5.0.2` (solnic)
|
|
129
|
+
- [rom] Dependency on `rom-changeset` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
130
|
+
- [rom-changeset] `Relation::Combined#changeset` will raise a meaningful `NotImplementedError` now (solnic)
|
|
131
|
+
- [rom-changeset] Passing an array to `Changeset#associate` will raise a meaningful `NotImplementedError` now (solnic)
|
|
130
132
|
|
|
131
|
-
|
|
133
|
+
[Compare v5.0.1...v5.0.2](https://github.com/rom-rb/rom/compare/v5.0.1...v5.0.2)
|
|
132
134
|
|
|
133
|
-
|
|
135
|
+
## 5.0.1 2019-04-24
|
|
134
136
|
|
|
135
|
-
* All version numbers have been inlined to `5.0.0`
|
|
136
|
-
* `rom-mapper` gem has been retired and `ROM::Mapper` is now part of `rom-core`
|
|
137
137
|
|
|
138
|
-
|
|
138
|
+
### Fixed
|
|
139
139
|
|
|
140
|
-
|
|
141
|
-
* `rom-changeset` bumped to `5.0.0` (solnic)
|
|
142
|
-
* `rom-repository` bumped to `5.0.0` (solnic)
|
|
143
|
-
* `rom-mapper` was moved to `core` under `rom/mapper` so it's no longer a runtime dependency (solnic)
|
|
140
|
+
- [rom-core] Missing dependency on `transproc` was added (solnic)
|
|
144
141
|
|
|
145
|
-
|
|
142
|
+
### Changed
|
|
143
|
+
|
|
144
|
+
- [rom] Dependency on `rom-core` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
146
145
|
|
|
147
|
-
|
|
148
|
-
* [BREAKING] Attribute aliases are no longer stored in attribute's type meta (waiting-for-dev)
|
|
149
|
-
* Updated to work with `dry-types 1.0.0` (flash-gordon)
|
|
150
|
-
* Updated to work with `dry-struct 1.0.0` (flash-gordon)
|
|
151
|
-
* Updated to work with `dry-initializer 3.0.0` (solnic)
|
|
146
|
+
[Compare v5.0.0...v5.0.1](https://github.com/rom-rb/rom/compare/v5.0.0...v5.0.1)
|
|
152
147
|
|
|
153
|
-
##
|
|
148
|
+
## 5.0.0 2019-04-24
|
|
154
149
|
|
|
155
|
-
* [BREAKING] Support for ruby <= `2.4` was dropped (flash-gordon)
|
|
156
|
-
* [BREAKING] `Repository::Root#aggregate` was removed in favor of `Relation#combine` (v-kolesnikov)
|
|
157
150
|
|
|
158
|
-
|
|
151
|
+
### Changed
|
|
159
152
|
|
|
160
|
-
|
|
153
|
+
- `rom-core` bumped to `5.0.0` (solnic)
|
|
154
|
+
- `rom-changeset` bumped to `5.0.0` (solnic)
|
|
155
|
+
- `rom-repository` bumped to `5.0.0` (solnic)
|
|
156
|
+
- `rom-mapper` was moved to `core` under `rom/mapper` so it's no longer a runtime dependency (solnic)
|
|
157
|
+
- [rom-core] [BREAKING] `Types::Int` is now `Types::Integer` (flash-gordon)
|
|
158
|
+
- [rom-core] [BREAKING] Attribute aliases are no longer stored in attribute's type meta (waiting-for-dev)
|
|
159
|
+
- [rom-core] Updated to work with `dry-types 1.0.0` (flash-gordon)
|
|
160
|
+
- [rom-core] Updated to work with `dry-struct 1.0.0` (flash-gordon)
|
|
161
|
+
- [rom-core] Updated to work with `dry-initializer 3.0.0` (solnic)
|
|
162
|
+
- [rom-repository] [BREAKING] Support for ruby <= `2.4` was dropped (flash-gordon)
|
|
163
|
+
- [rom-repository] [BREAKING] `Repository::Root#aggregate` was removed in favor of `Relation#combine` (v-kolesnikov)
|
|
161
164
|
|
|
162
165
|
[Compare v4.2.1...v5.0.0](https://github.com/rom-rb/rom/compare/v4.2.1...v5.0.0)
|
|
163
166
|
|
|
164
|
-
|
|
167
|
+
## 4.2.1 2018-05-03
|
|
168
|
+
|
|
165
169
|
|
|
166
|
-
|
|
170
|
+
### Changed
|
|
171
|
+
|
|
172
|
+
- `rom-core` updated to `['~> 4.2', '>= 4.2.1']`
|
|
167
173
|
|
|
168
174
|
[Compare v4.2.0...v4.2.1](https://github.com/rom-rb/rom/compare/v4.2.0...v4.2.1)
|
|
169
175
|
|
|
170
|
-
|
|
176
|
+
## 4.2.0 2018-03-29
|
|
171
177
|
|
|
172
|
-
|
|
173
|
-
|
|
178
|
+
|
|
179
|
+
### Changed
|
|
180
|
+
|
|
181
|
+
- [rom] `rom-core` updated to `['~> 4.2', '>= 4.2.0']`
|
|
182
|
+
- [rom] `rom-changeset` updated to `['~> 1.0', '>= 1.0.2']`
|
|
174
183
|
|
|
175
184
|
[Compare v4.1.3...v4.2.0](https://github.com/rom-rb/rom/compare/v4.1.3...v4.2.0)
|
|
176
185
|
|
|
177
|
-
|
|
186
|
+
## 4.1.3 2018-02-03
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
### Changed
|
|
178
190
|
|
|
179
|
-
|
|
191
|
+
- [rom] `rom-core` updated to `['~> 4.1', '>= 4.1.3']`
|
|
180
192
|
|
|
181
|
-
[Compare v4.1.2...v4.
|
|
193
|
+
[Compare v4.1.2...v4.1.3](https://github.com/rom-rb/rom/compare/v4.1.2...v4.1.3)
|
|
182
194
|
|
|
183
|
-
|
|
195
|
+
## 4.1.2 2018-01-15
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
### Changed
|
|
184
199
|
|
|
185
|
-
|
|
200
|
+
- [rom] `rom-core` updated to `['~> 4.1', '>= 4.1.1']`
|
|
186
201
|
|
|
187
202
|
[Compare v4.1.1...v4.1.2](https://github.com/rom-rb/rom/compare/v4.1.1...v4.1.2)
|
|
188
203
|
|
|
189
|
-
|
|
204
|
+
## 4.1.1 2017-12-01
|
|
190
205
|
|
|
191
|
-
|
|
206
|
+
|
|
207
|
+
### Changed
|
|
208
|
+
|
|
209
|
+
- [rom] `rom-repository` updated to `['~> 2.0', '>= 2.0.2']`
|
|
192
210
|
|
|
193
211
|
[Compare v4.1.0...v4.1.1](https://github.com/rom-rb/rom/compare/v4.1.0...v4.1.1)
|
|
194
212
|
|
|
195
|
-
|
|
213
|
+
## 4.1.0 2017-11-17
|
|
214
|
+
|
|
196
215
|
|
|
197
|
-
|
|
198
|
-
|
|
216
|
+
### Changed
|
|
217
|
+
|
|
218
|
+
- [rom] `rom-core` updated to `['~> 4.1']`
|
|
219
|
+
- [rom] `rom-mapper` updated to `'~> 1.1'`
|
|
199
220
|
|
|
200
221
|
[Compare v4.0.3...v4.1.0](https://github.com/rom-rb/rom/compare/v4.0.3...v4.1.0)
|
|
201
222
|
|
|
202
|
-
|
|
223
|
+
## 4.0.3 2017-11-14
|
|
203
224
|
|
|
204
|
-
|
|
225
|
+
|
|
226
|
+
### Changed
|
|
227
|
+
|
|
228
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.3']`
|
|
205
229
|
|
|
206
230
|
[Compare v4.0.2...v4.0.3](https://github.com/rom-rb/rom/compare/v4.0.2...v4.0.3)
|
|
207
231
|
|
|
208
|
-
|
|
232
|
+
## 4.0.2 2017-11-02
|
|
233
|
+
|
|
234
|
+
|
|
235
|
+
### Changed
|
|
209
236
|
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
237
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.2']`
|
|
238
|
+
- [rom] `rom-mapper` updated to `['~> 1.0', '>= 1.0.2']`
|
|
239
|
+
- [rom] `rom-changeset` updated to `['~> 1.0', '>= 1.0.1']`
|
|
240
|
+
- [rom] `rom-repository` updated to `['~> 2.0', '>= 2.0.1']`
|
|
214
241
|
|
|
215
242
|
[Compare v4.0.1...v4.0.2](https://github.com/rom-rb/rom/compare/v4.0.1...v4.0.2)
|
|
216
243
|
|
|
217
|
-
|
|
244
|
+
## 4.0.1 2017-10-22
|
|
245
|
+
|
|
246
|
+
|
|
247
|
+
### Changed
|
|
218
248
|
|
|
219
|
-
|
|
220
|
-
|
|
249
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.1']`
|
|
250
|
+
- [rom] `rom-mapper` updated to `['~> 1.0', '>= 1.0.1']`
|
|
221
251
|
|
|
222
|
-
[Compare v4.0.0
|
|
252
|
+
[Compare v4.0.0...v4.0.1](https://github.com/rom-rb/rom/compare/v4.0.0...v4.0.1)
|
|
223
253
|
|
|
224
|
-
|
|
254
|
+
## 4.0.0 2017-10-18
|
|
225
255
|
|
|
226
|
-
This release turns `rom` gem into a meta gem which depends on `rom-core`, `rom-mapper`, `rom-repository` and `rom-changeset'`. See [CHANGELOG](https://github.com/rom-rb/rom/blob/master/core/CHANGELOG.md#v400-
|
|
256
|
+
This release turns `rom` gem into a meta gem which depends on `rom-core`, `rom-mapper`, `rom-repository` and `rom-changeset'`. See [CHANGELOG](https://github.com/rom-rb/rom/blob/master/core/CHANGELOG.md#v400-2017-10-18) in core for more information.
|
data/LICENSE
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
a copy of this software and associated documentation files (the
|
|
5
|
-
"Software"), to deal in the Software without restriction, including
|
|
6
|
-
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
-
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
-
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
-
the following conditions:
|
|
3
|
+
Copyright (c) 2015-2019 rom-rb team
|
|
10
4
|
|
|
11
|
-
|
|
12
|
-
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
|
6
|
+
this software and associated documentation files (the "Software"), to deal in
|
|
7
|
+
the Software without restriction, including without limitation the rights to
|
|
8
|
+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
|
9
|
+
the Software, and to permit persons to whom the Software is furnished to do so,
|
|
10
|
+
subject to the following conditions:
|
|
13
11
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
17
|
+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
|
18
|
+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
|
19
|
+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
20
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
[gem]: https://rubygems.org/gems/rom
|
|
2
|
-
[
|
|
3
|
-
[
|
|
2
|
+
[actions]: https://github.com/rom-rb/rom/actions
|
|
3
|
+
[codacy]: https://www.codacy.com/gh/rom-rb/rom
|
|
4
4
|
[inchpages]: http://inch-ci.org/github/rom-rb/rom/
|
|
5
5
|
[chat]: https://rom-rb.zulipchat.com
|
|
6
6
|
|
|
7
7
|
# rom [][chat]
|
|
8
8
|
|
|
9
9
|
[][gem]
|
|
10
|
-
[][actions]
|
|
11
|
+
[][codacy]
|
|
12
|
+
[][codacy]
|
|
13
13
|
[][inchpages]
|
|
14
14
|
[](#backers)
|
|
15
15
|
[](#sponsors)
|
|
@@ -21,7 +21,6 @@ the full power of your database.
|
|
|
21
21
|
Main rom gem provides following components:
|
|
22
22
|
|
|
23
23
|
* [core](https://github.com/rom-rb/rom/blob/master/core/README.md) - Core and Adapter APIs
|
|
24
|
-
* [mapper](https://github.com/rom-rb/rom/blob/master/mapper/README.md) - Data mappers integrated with rom-core
|
|
25
24
|
* [changeset](https://github.com/rom-rb/rom/blob/master/changeset/README.md) - Changeset objects integrated with rom-core
|
|
26
25
|
* [repository](https://github.com/rom-rb/rom/blob/master/repository/README.md) - Additional repository abstraction integrated with rom-core
|
|
27
26
|
|
data/lib/rom/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rom
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 5.
|
|
4
|
+
version: 5.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Solnica
|
|
8
|
-
autorequire:
|
|
8
|
+
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2020-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rom-core
|
|
@@ -16,62 +16,74 @@ dependencies:
|
|
|
16
16
|
requirements:
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
|
-
version: '5.
|
|
19
|
+
version: '5.2'
|
|
20
20
|
- - ">="
|
|
21
21
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 5.
|
|
22
|
+
version: 5.2.4
|
|
23
23
|
type: :runtime
|
|
24
24
|
prerelease: false
|
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
26
26
|
requirements:
|
|
27
27
|
- - "~>"
|
|
28
28
|
- !ruby/object:Gem::Version
|
|
29
|
-
version: '5.
|
|
29
|
+
version: '5.2'
|
|
30
30
|
- - ">="
|
|
31
31
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 5.
|
|
32
|
+
version: 5.2.4
|
|
33
33
|
- !ruby/object:Gem::Dependency
|
|
34
34
|
name: rom-repository
|
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
|
36
36
|
requirements:
|
|
37
37
|
- - "~>"
|
|
38
38
|
- !ruby/object:Gem::Version
|
|
39
|
-
version: '5.
|
|
39
|
+
version: '5.2'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 5.2.2
|
|
40
43
|
type: :runtime
|
|
41
44
|
prerelease: false
|
|
42
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
43
46
|
requirements:
|
|
44
47
|
- - "~>"
|
|
45
48
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '5.
|
|
49
|
+
version: '5.2'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 5.2.2
|
|
47
53
|
- !ruby/object:Gem::Dependency
|
|
48
54
|
name: rom-changeset
|
|
49
55
|
requirement: !ruby/object:Gem::Requirement
|
|
50
56
|
requirements:
|
|
51
57
|
- - "~>"
|
|
52
58
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '5.
|
|
59
|
+
version: '5.2'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 5.2.3
|
|
54
63
|
type: :runtime
|
|
55
64
|
prerelease: false
|
|
56
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
57
66
|
requirements:
|
|
58
67
|
- - "~>"
|
|
59
68
|
- !ruby/object:Gem::Version
|
|
60
|
-
version: '5.
|
|
69
|
+
version: '5.2'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 5.2.3
|
|
61
73
|
- !ruby/object:Gem::Dependency
|
|
62
74
|
name: rake
|
|
63
75
|
requirement: !ruby/object:Gem::Requirement
|
|
64
76
|
requirements:
|
|
65
77
|
- - "~>"
|
|
66
78
|
- !ruby/object:Gem::Version
|
|
67
|
-
version: '
|
|
79
|
+
version: '13.0'
|
|
68
80
|
type: :development
|
|
69
81
|
prerelease: false
|
|
70
82
|
version_requirements: !ruby/object:Gem::Requirement
|
|
71
83
|
requirements:
|
|
72
84
|
- - "~>"
|
|
73
85
|
- !ruby/object:Gem::Version
|
|
74
|
-
version: '
|
|
86
|
+
version: '13.0'
|
|
75
87
|
- !ruby/object:Gem::Dependency
|
|
76
88
|
name: rspec
|
|
77
89
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -105,7 +117,7 @@ metadata:
|
|
|
105
117
|
documentation_uri: https://api.rom-rb.org/rom/
|
|
106
118
|
mailing_list_uri: https://discourse.rom-rb.org/
|
|
107
119
|
bug_tracker_uri: https://github.com/rom-rb/rom/issues
|
|
108
|
-
post_install_message:
|
|
120
|
+
post_install_message:
|
|
109
121
|
rdoc_options: []
|
|
110
122
|
require_paths:
|
|
111
123
|
- lib
|
|
@@ -120,8 +132,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
120
132
|
- !ruby/object:Gem::Version
|
|
121
133
|
version: '0'
|
|
122
134
|
requirements: []
|
|
123
|
-
rubygems_version: 3.
|
|
124
|
-
signing_key:
|
|
135
|
+
rubygems_version: 3.2.3
|
|
136
|
+
signing_key:
|
|
125
137
|
specification_version: 4
|
|
126
138
|
summary: Persistence and mapping toolkit for Ruby
|
|
127
139
|
test_files: []
|