rom 5.2.1 → 5.2.2
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 +115 -129
- data/lib/rom/version.rb +1 -1
- metadata +21 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8e61e5132b23b038177e6d01cd4c18e496f9e33dcaaf552fcf0d07b0a883f326
|
|
4
|
+
data.tar.gz: 3c51d24b34ff114244513e3ce58eaef979db479551bdcd9015a3ffbba400b155
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 963c40c727634447df42bbb053aa8a71b4e1e84c957bb05e6c53fc4333480664cf056169f98dffc0e920fbc8d2623e9f8fb877850689b4c037ea8ac2d048218a
|
|
7
|
+
data.tar.gz: 41cdc64672d36aa26877dfe28952b0edfdbe744cb80362d4b74e1cb4ce7b6d20d31cda724cf8331c0fc757ec55a35d8fab703e1bb9bd3f373b03b2ad41e43f93
|
data/CHANGELOG.md
CHANGED
|
@@ -1,236 +1,222 @@
|
|
|
1
|
-
|
|
1
|
+
## 5.2.2 2020-02-03
|
|
2
2
|
|
|
3
|
-
This release contains keyword fixes reported by Ruby 2.7.
|
|
4
|
-
|
|
5
|
-
[Compare v5.1.2...v5.2.1](https://github.com/rom-rb/rom/compare/v5.1.2...v5.2.1)
|
|
6
|
-
|
|
7
|
-
# 5.2.0 2020-01-11 [yanked]
|
|
8
|
-
|
|
9
|
-
Republished as 5.2.1
|
|
10
|
-
|
|
11
|
-
# 5.1.2 2019-08-17
|
|
12
|
-
|
|
13
|
-
## rom
|
|
14
|
-
|
|
15
|
-
### Changed
|
|
16
3
|
|
|
17
|
-
|
|
4
|
+
### Added
|
|
18
5
|
|
|
19
|
-
|
|
6
|
+
- [rom-repository] `Repository#transaction` accepts transaction options now (@ianks)
|
|
20
7
|
|
|
21
8
|
### Fixed
|
|
22
9
|
|
|
23
|
-
|
|
24
|
-
* Filtering out duplicated combine nodes should no longer cause performance issues (@solnic)
|
|
25
|
-
* Relation names are properly equalized now (@solnic)
|
|
26
|
-
* Inferring class name for auto-structs works correctly with `:statuses` and `:aliases` relation names (@solnic)
|
|
10
|
+
- [rom-core] Constructor types were fired twice when writing data (@flash-gordon)
|
|
27
11
|
|
|
28
|
-
## rom-changeset
|
|
29
12
|
|
|
30
|
-
|
|
13
|
+
[Compare v5.2.1...v5.2.2](https://github.com/rom-rb/rom/compare/v5.2.1...v5.2.2)
|
|
31
14
|
|
|
32
|
-
|
|
15
|
+
## 5.2.1 2020-01-11
|
|
33
16
|
|
|
34
|
-
|
|
17
|
+
This release contains keyword fixes reported by Ruby 2.7.
|
|
35
18
|
|
|
36
|
-
### Changed
|
|
37
19
|
|
|
38
|
-
|
|
20
|
+
[Compare v5.2.0...v5.2.1](https://github.com/rom-rb/rom/compare/v5.2.0...v5.2.1)
|
|
39
21
|
|
|
40
|
-
|
|
22
|
+
## 5.2.0 2020-01-11
|
|
41
23
|
|
|
42
|
-
|
|
24
|
+
Yanked and republished as 5.2.1
|
|
43
25
|
|
|
44
|
-
## rom
|
|
45
26
|
|
|
46
|
-
|
|
27
|
+
[Compare v5.1.2...v5.2.0](https://github.com/rom-rb/rom/compare/v5.1.2...v5.2.0)
|
|
47
28
|
|
|
48
|
-
|
|
29
|
+
## 5.1.2 2019-08-17
|
|
49
30
|
|
|
50
|
-
## rom-core
|
|
51
31
|
|
|
52
32
|
### Fixed
|
|
53
33
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
34
|
+
- [rom-core] Filtering out duplicated combine nodes works correctly with aliased nodes (@solnic)
|
|
35
|
+
- [rom-core] Filtering out duplicated combine nodes should no longer cause performance issues (@solnic)
|
|
36
|
+
- [rom-core] Relation names are properly equalized now (@solnic)
|
|
37
|
+
- [rom-core] Inferring class name for auto-structs works correctly with `:statuses` and `:aliases` relation names (@solnic)
|
|
57
38
|
|
|
58
39
|
### Changed
|
|
59
40
|
|
|
60
|
-
|
|
41
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
42
|
+
- [rom-changeset] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
43
|
+
- [rom-repository] Dependency on `rom-core` was bumped to `>= 5.1.2` (@solnic)
|
|
44
|
+
|
|
45
|
+
[Compare v5.1.1...v5.1.2](https://github.com/rom-rb/rom/compare/v5.1.1...v5.1.2)
|
|
46
|
+
|
|
47
|
+
## 5.1.1 2019-08-06
|
|
61
48
|
|
|
62
|
-
## rom-repository
|
|
63
49
|
|
|
64
50
|
### Changed
|
|
65
51
|
|
|
66
|
-
|
|
52
|
+
- [rom-core] Loading the gem no longer crashes in the absence of `rom` gem (issue #560) (@solnic)
|
|
53
|
+
- [rom] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
54
|
+
- [rom-changeset] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
55
|
+
- [rom-repository] Dependency on `rom-core` was bumped to `>= 5.1.1` (@solnic)
|
|
67
56
|
|
|
68
57
|
[Compare v5.1.0...v5.1.1](https://github.com/rom-rb/rom/compare/v5.1.0...v5.1.1)
|
|
69
58
|
|
|
70
|
-
|
|
59
|
+
## 5.1.0 2019-07-30
|
|
71
60
|
|
|
72
|
-
## rom-core
|
|
73
61
|
|
|
74
62
|
### Added
|
|
75
63
|
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
64
|
+
- [rom-core] `ROM::Transformer.map` shortcut for defining transformations (@solnic)
|
|
65
|
+
- [rom-core] `ROM::Transformer` supports instance methods as mapping functions now (@solnic)
|
|
66
|
+
- [rom-core] `ROM::Transformer` configuration can be now inlined ie `relation :users, as: :json_serializer` (@solnic)
|
|
67
|
+
- [rom-changeset] Plugin API :tada: (@solnic)
|
|
68
|
+
- [rom-changeset] Support for `command_options` in changesets for providing any additional command options (@solnic)
|
|
69
|
+
- [rom-changeset] Support for `command_plugins` in changesets for enabling command plugins and configuring them (@solnic)
|
|
70
|
+
- [rom-repository] Plugin API :tada: (@flash-gordon)
|
|
79
71
|
|
|
80
72
|
### Fixed
|
|
81
73
|
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
74
|
+
- [rom-core] Combining same relation multiple times no longer crashes auto-mapping (fixes #547) (@solnic)
|
|
75
|
+
- [rom-core] `ROM::Transformer` works correctly with inheritance (@solnic)
|
|
76
|
+
- [rom-core] `CommandCompiler` supports command options correctly now (@solnic)
|
|
85
77
|
|
|
86
78
|
### Changed
|
|
87
79
|
|
|
88
|
-
|
|
80
|
+
- [rom-core] Plugin API has been generalized to enable arbitrary component plugins (@flash-gordon)
|
|
89
81
|
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
### Added
|
|
82
|
+
[Compare v5.0.2...v5.1.0](https://github.com/rom-rb/rom/compare/v5.0.2...v5.1.0)
|
|
93
83
|
|
|
94
|
-
|
|
95
|
-
* Support for `command_options` in changesets for providing any additional command options (@solnic)
|
|
96
|
-
* Support for `command_plugins` in changesets for enabling command plugins and configuring them (@solnic)
|
|
84
|
+
## 5.0.2 2019-05-01
|
|
97
85
|
|
|
98
|
-
## rom-repository
|
|
99
86
|
|
|
100
|
-
###
|
|
87
|
+
### Fixed
|
|
101
88
|
|
|
102
|
-
|
|
89
|
+
- [rom-core] Forwarding to `root` in `Relation::Combined` behaves as expected when another combined relation was returned from the root (issue #525) (solnic)
|
|
90
|
+
- [rom-core] Specifying attribute options as the third argument in `attribute` DSL works again (issue #540) (solnic)
|
|
103
91
|
|
|
104
|
-
|
|
92
|
+
### Changed
|
|
105
93
|
|
|
106
|
-
|
|
94
|
+
- [rom] Dependency on `rom-core` was bumped to `~> 5.0`, `>= 5.0.2` (solnic)
|
|
95
|
+
- [rom] Dependency on `rom-changeset` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
96
|
+
- [rom-changeset] `Relation::Combined#changeset` will raise a meaningful `NotImplementedError` now (solnic)
|
|
97
|
+
- [rom-changeset] Passing an array to `Changeset#associate` will raise a meaningful `NotImplementedError` now (solnic)
|
|
107
98
|
|
|
108
|
-
|
|
99
|
+
[Compare v5.0.1...v5.0.2](https://github.com/rom-rb/rom/compare/v5.0.1...v5.0.2)
|
|
109
100
|
|
|
110
|
-
|
|
111
|
-
* Dependency on `rom-changeset` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
101
|
+
## 5.0.1 2019-04-24
|
|
112
102
|
|
|
113
|
-
## rom-core 5.0.2
|
|
114
103
|
|
|
115
104
|
### Fixed
|
|
116
105
|
|
|
117
|
-
|
|
118
|
-
* Specifying attribute options as the third argument in `attribute` DSL works again (issue #540) (solnic)
|
|
119
|
-
|
|
120
|
-
## rom-changeset 5.0.1
|
|
106
|
+
- [rom-core] Missing dependency on `transproc` was added (solnic)
|
|
121
107
|
|
|
122
108
|
### Changed
|
|
123
109
|
|
|
124
|
-
|
|
125
|
-
* Passing an array to `Changeset#associate` will raise a meaningful `NotImplementedError` now (solnic)
|
|
110
|
+
- [rom] Dependency on `rom-core` was bumped to `~> 5.0`, `>= 5.0.1` (solnic)
|
|
126
111
|
|
|
127
|
-
|
|
112
|
+
[Compare v5.0.0...v5.0.1](https://github.com/rom-rb/rom/compare/v5.0.0...v5.0.1)
|
|
128
113
|
|
|
129
|
-
|
|
114
|
+
## 5.0.0 2019-04-24
|
|
130
115
|
|
|
131
|
-
[Compare v5.0.1...v5.0.2](https://github.com/rom-rb/rom/compare/v5.0.1...v5.0.2)
|
|
132
116
|
|
|
133
|
-
|
|
117
|
+
### Changed
|
|
134
118
|
|
|
135
|
-
|
|
119
|
+
- `rom-core` bumped to `5.0.0` (solnic)
|
|
120
|
+
- `rom-changeset` bumped to `5.0.0` (solnic)
|
|
121
|
+
- `rom-repository` bumped to `5.0.0` (solnic)
|
|
122
|
+
- `rom-mapper` was moved to `core` under `rom/mapper` so it's no longer a runtime dependency (solnic)
|
|
123
|
+
- [rom-core] [BREAKING] `Types::Int` is now `Types::Integer` (flash-gordon)
|
|
124
|
+
- [rom-core] [BREAKING] Attribute aliases are no longer stored in attribute's type meta (waiting-for-dev)
|
|
125
|
+
- [rom-core] Updated to work with `dry-types 1.0.0` (flash-gordon)
|
|
126
|
+
- [rom-core] Updated to work with `dry-struct 1.0.0` (flash-gordon)
|
|
127
|
+
- [rom-core] Updated to work with `dry-initializer 3.0.0` (solnic)
|
|
128
|
+
- [rom-repository] [BREAKING] Support for ruby <= `2.4` was dropped (flash-gordon)
|
|
129
|
+
- [rom-repository] [BREAKING] `Repository::Root#aggregate` was removed in favor of `Relation#combine` (v-kolesnikov)
|
|
136
130
|
|
|
137
|
-
|
|
131
|
+
[Compare v4.2.1...v5.0.0](https://github.com/rom-rb/rom/compare/v4.2.1...v5.0.0)
|
|
138
132
|
|
|
139
|
-
##
|
|
133
|
+
## 4.2.1 2018-05-03
|
|
140
134
|
|
|
141
|
-
* Missing dependency on `transproc` was added (solnic)
|
|
142
135
|
|
|
143
|
-
|
|
136
|
+
### Changed
|
|
144
137
|
|
|
145
|
-
|
|
146
|
-
* `rom-mapper` gem has been retired and `ROM::Mapper` is now part of `rom-core`
|
|
138
|
+
- `rom-core` updated to `['~> 4.2', '>= 4.2.1']`
|
|
147
139
|
|
|
148
|
-
|
|
140
|
+
[Compare v4.2.0...v4.2.1](https://github.com/rom-rb/rom/compare/v4.2.0...v4.2.1)
|
|
149
141
|
|
|
150
|
-
|
|
151
|
-
* `rom-changeset` bumped to `5.0.0` (solnic)
|
|
152
|
-
* `rom-repository` bumped to `5.0.0` (solnic)
|
|
153
|
-
* `rom-mapper` was moved to `core` under `rom/mapper` so it's no longer a runtime dependency (solnic)
|
|
142
|
+
## 4.2.0 2018-03-29
|
|
154
143
|
|
|
155
|
-
## rom-core
|
|
156
144
|
|
|
157
|
-
|
|
158
|
-
* [BREAKING] Attribute aliases are no longer stored in attribute's type meta (waiting-for-dev)
|
|
159
|
-
* Updated to work with `dry-types 1.0.0` (flash-gordon)
|
|
160
|
-
* Updated to work with `dry-struct 1.0.0` (flash-gordon)
|
|
161
|
-
* Updated to work with `dry-initializer 3.0.0` (solnic)
|
|
145
|
+
### Changed
|
|
162
146
|
|
|
163
|
-
|
|
147
|
+
- [rom] `rom-core` updated to `['~> 4.2', '>= 4.2.0']`
|
|
148
|
+
- [rom] `rom-changeset` updated to `['~> 1.0', '>= 1.0.2']`
|
|
164
149
|
|
|
165
|
-
|
|
166
|
-
* [BREAKING] `Repository::Root#aggregate` was removed in favor of `Relation#combine` (v-kolesnikov)
|
|
150
|
+
[Compare v4.1.3...v4.2.0](https://github.com/rom-rb/rom/compare/v4.1.3...v4.2.0)
|
|
167
151
|
|
|
168
|
-
##
|
|
152
|
+
## 4.1.3 2018-02-03
|
|
169
153
|
|
|
170
|
-
*No changes*
|
|
171
154
|
|
|
172
|
-
|
|
155
|
+
### Changed
|
|
173
156
|
|
|
174
|
-
|
|
157
|
+
- [rom] `rom-core` updated to `['~> 4.1', '>= 4.1.3']`
|
|
175
158
|
|
|
176
|
-
|
|
159
|
+
[Compare v4.1.2...v4.1.3](https://github.com/rom-rb/rom/compare/v4.1.2...v4.1.3)
|
|
177
160
|
|
|
178
|
-
|
|
161
|
+
## 4.1.2 2018-01-15
|
|
179
162
|
|
|
180
|
-
# 4.2.0 2018-03-29
|
|
181
163
|
|
|
182
|
-
|
|
183
|
-
* `rom-changeset` updated to `['~> 1.0', '>= 1.0.2']`
|
|
164
|
+
### Changed
|
|
184
165
|
|
|
185
|
-
[
|
|
166
|
+
- [rom] `rom-core` updated to `['~> 4.1', '>= 4.1.1']`
|
|
186
167
|
|
|
187
|
-
|
|
168
|
+
[Compare v4.1.1...v4.1.2](https://github.com/rom-rb/rom/compare/v4.1.1...v4.1.2)
|
|
188
169
|
|
|
189
|
-
|
|
170
|
+
## 4.1.1 2017-12-01
|
|
190
171
|
|
|
191
|
-
[Compare v4.1.2...v4.2.0](https://github.com/rom-rb/rom/compare/v4.1.2...v4.1.3)
|
|
192
172
|
|
|
193
|
-
|
|
173
|
+
### Changed
|
|
194
174
|
|
|
195
|
-
|
|
175
|
+
- [rom] `rom-repository` updated to `['~> 2.0', '>= 2.0.2']`
|
|
196
176
|
|
|
197
|
-
[Compare v4.1.
|
|
198
|
-
|
|
199
|
-
# 4.1.1 2017-12-01
|
|
177
|
+
[Compare v4.1.0...v4.1.1](https://github.com/rom-rb/rom/compare/v4.1.0...v4.1.1)
|
|
200
178
|
|
|
201
|
-
|
|
179
|
+
## 4.1.0 2017-11-17
|
|
202
180
|
|
|
203
|
-
[Compare v4.1.0...v4.1.1](https://github.com/rom-rb/rom/compare/v4.1.0...v4.1.1)
|
|
204
181
|
|
|
205
|
-
|
|
182
|
+
### Changed
|
|
206
183
|
|
|
207
|
-
|
|
208
|
-
|
|
184
|
+
- [rom] `rom-core` updated to `['~> 4.1']`
|
|
185
|
+
- [rom] `rom-mapper` updated to `'~> 1.1'`
|
|
209
186
|
|
|
210
187
|
[Compare v4.0.3...v4.1.0](https://github.com/rom-rb/rom/compare/v4.0.3...v4.1.0)
|
|
211
188
|
|
|
212
|
-
|
|
189
|
+
## 4.0.3 2017-11-14
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
### Changed
|
|
213
193
|
|
|
214
|
-
|
|
194
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.3']`
|
|
215
195
|
|
|
216
196
|
[Compare v4.0.2...v4.0.3](https://github.com/rom-rb/rom/compare/v4.0.2...v4.0.3)
|
|
217
197
|
|
|
218
|
-
|
|
198
|
+
## 4.0.2 2017-11-02
|
|
219
199
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
200
|
+
|
|
201
|
+
### Changed
|
|
202
|
+
|
|
203
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.2']`
|
|
204
|
+
- [rom] `rom-mapper` updated to `['~> 1.0', '>= 1.0.2']`
|
|
205
|
+
- [rom] `rom-changeset` updated to `['~> 1.0', '>= 1.0.1']`
|
|
206
|
+
- [rom] `rom-repository` updated to `['~> 2.0', '>= 2.0.1']`
|
|
224
207
|
|
|
225
208
|
[Compare v4.0.1...v4.0.2](https://github.com/rom-rb/rom/compare/v4.0.1...v4.0.2)
|
|
226
209
|
|
|
227
|
-
|
|
210
|
+
## 4.0.1 2017-10-22
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
### Changed
|
|
228
214
|
|
|
229
|
-
|
|
230
|
-
|
|
215
|
+
- [rom] `rom-core` updated to `['~> 4.0', '>= 4.0.1']`
|
|
216
|
+
- [rom] `rom-mapper` updated to `['~> 1.0', '>= 1.0.1']`
|
|
231
217
|
|
|
232
|
-
[Compare v4.0.0
|
|
218
|
+
[Compare v4.0.0...v4.0.1](https://github.com/rom-rb/rom/compare/v4.0.0...v4.0.1)
|
|
233
219
|
|
|
234
|
-
|
|
220
|
+
## 4.0.0 2017-10-18
|
|
235
221
|
|
|
236
|
-
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-
|
|
222
|
+
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/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.2.
|
|
4
|
+
version: 5.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Piotr Solnica
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2020-
|
|
11
|
+
date: 2020-03-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rom-core
|
|
@@ -17,6 +17,9 @@ dependencies:
|
|
|
17
17
|
- - "~>"
|
|
18
18
|
- !ruby/object:Gem::Version
|
|
19
19
|
version: '5.2'
|
|
20
|
+
- - ">="
|
|
21
|
+
- !ruby/object:Gem::Version
|
|
22
|
+
version: 5.2.2
|
|
20
23
|
type: :runtime
|
|
21
24
|
prerelease: false
|
|
22
25
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -24,6 +27,9 @@ dependencies:
|
|
|
24
27
|
- - "~>"
|
|
25
28
|
- !ruby/object:Gem::Version
|
|
26
29
|
version: '5.2'
|
|
30
|
+
- - ">="
|
|
31
|
+
- !ruby/object:Gem::Version
|
|
32
|
+
version: 5.2.2
|
|
27
33
|
- !ruby/object:Gem::Dependency
|
|
28
34
|
name: rom-repository
|
|
29
35
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -31,6 +37,9 @@ dependencies:
|
|
|
31
37
|
- - "~>"
|
|
32
38
|
- !ruby/object:Gem::Version
|
|
33
39
|
version: '5.2'
|
|
40
|
+
- - ">="
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: 5.2.2
|
|
34
43
|
type: :runtime
|
|
35
44
|
prerelease: false
|
|
36
45
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -38,6 +47,9 @@ dependencies:
|
|
|
38
47
|
- - "~>"
|
|
39
48
|
- !ruby/object:Gem::Version
|
|
40
49
|
version: '5.2'
|
|
50
|
+
- - ">="
|
|
51
|
+
- !ruby/object:Gem::Version
|
|
52
|
+
version: 5.2.2
|
|
41
53
|
- !ruby/object:Gem::Dependency
|
|
42
54
|
name: rom-changeset
|
|
43
55
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -45,6 +57,9 @@ dependencies:
|
|
|
45
57
|
- - "~>"
|
|
46
58
|
- !ruby/object:Gem::Version
|
|
47
59
|
version: '5.2'
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: 5.2.1
|
|
48
63
|
type: :runtime
|
|
49
64
|
prerelease: false
|
|
50
65
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -52,6 +67,9 @@ dependencies:
|
|
|
52
67
|
- - "~>"
|
|
53
68
|
- !ruby/object:Gem::Version
|
|
54
69
|
version: '5.2'
|
|
70
|
+
- - ">="
|
|
71
|
+
- !ruby/object:Gem::Version
|
|
72
|
+
version: 5.2.1
|
|
55
73
|
- !ruby/object:Gem::Dependency
|
|
56
74
|
name: rake
|
|
57
75
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -114,7 +132,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
114
132
|
- !ruby/object:Gem::Version
|
|
115
133
|
version: '0'
|
|
116
134
|
requirements: []
|
|
117
|
-
rubygems_version: 3.1.
|
|
135
|
+
rubygems_version: 3.1.2
|
|
118
136
|
signing_key:
|
|
119
137
|
specification_version: 4
|
|
120
138
|
summary: Persistence and mapping toolkit for Ruby
|