rails_ops 1.5.5 → 1.5.6
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +16 -0
- data/Gemfile.lock +70 -69
- data/Rakefile +1 -1
- data/VERSION +1 -1
- data/lib/rails_ops/context.rb +1 -1
- data/lib/rails_ops/model_mixins/virtual_has_one.rb +1 -1
- data/lib/rails_ops/railtie.rb +6 -1
- data/lib/rails_ops.rb +5 -0
- data/rails_ops.gemspec +4 -4
- data/test/unit/rails_ops/operation/model_test.rb +1 -1
- metadata +7 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 558a4a1a3cb23bc32dfec42de13a4d3b53f70d03e6b86148ba31be121af9dd61
|
4
|
+
data.tar.gz: 11662c7d0089d418644c0f26e081b0f149d17d713b68f40becd0ea0eeaef79b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 86c2246c61c29c514d1a60c3644ade9aae78036871d0343c0ab8b0e531a0cb61e67567a628c5cf7447ef3841f1139fd4b71511968af3a17d013e06d3cdaa80d5
|
7
|
+
data.tar.gz: 637c74db154cd4eac60d4775fbf3da556d9198307fcc00583e0f44ae3a0e8250dcae38781d62429272b2b7ffd5bb3da59348a7c4ab2d966de0c2296570897473
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## 1.5.6 (2024-08-22)
|
4
|
+
|
5
|
+
* #42 Bump nokogiri from 1.16.2 to 1.16.5 to mitigate CVE
|
6
|
+
|
7
|
+
* Lock the version of `sqlite3` to `<2.0.0` in order to mitigate
|
8
|
+
[sqlite3 errors in CI](https://github.com/activerecord-hackery/ransack/issues/1489).
|
9
|
+
|
10
|
+
Internal reference: `#127570`.
|
11
|
+
|
12
|
+
* Modernize deprecation handling to fix the issue where deprecation warnings
|
13
|
+
would lead to deprecation warnings themselves.
|
14
|
+
|
15
|
+
Internal reference: `#128487`.
|
16
|
+
|
17
|
+
* Freeze default empty array in `RailsOps::Context#op_chain`.
|
18
|
+
|
3
19
|
## 1.5.5 (2024-03-14)
|
4
20
|
|
5
21
|
* Add instance method `lock_model_at_build?` to
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
rails_ops (1.5.
|
4
|
+
rails_ops (1.5.6)
|
5
5
|
active_type (>= 1.3.0)
|
6
6
|
minitest
|
7
7
|
rails
|
@@ -11,35 +11,35 @@ PATH
|
|
11
11
|
GEM
|
12
12
|
remote: https://rubygems.org/
|
13
13
|
specs:
|
14
|
-
actioncable (7.1.3.
|
15
|
-
actionpack (= 7.1.3.
|
16
|
-
activesupport (= 7.1.3.
|
14
|
+
actioncable (7.1.3.4)
|
15
|
+
actionpack (= 7.1.3.4)
|
16
|
+
activesupport (= 7.1.3.4)
|
17
17
|
nio4r (~> 2.0)
|
18
18
|
websocket-driver (>= 0.6.1)
|
19
19
|
zeitwerk (~> 2.6)
|
20
|
-
actionmailbox (7.1.3.
|
21
|
-
actionpack (= 7.1.3.
|
22
|
-
activejob (= 7.1.3.
|
23
|
-
activerecord (= 7.1.3.
|
24
|
-
activestorage (= 7.1.3.
|
25
|
-
activesupport (= 7.1.3.
|
20
|
+
actionmailbox (7.1.3.4)
|
21
|
+
actionpack (= 7.1.3.4)
|
22
|
+
activejob (= 7.1.3.4)
|
23
|
+
activerecord (= 7.1.3.4)
|
24
|
+
activestorage (= 7.1.3.4)
|
25
|
+
activesupport (= 7.1.3.4)
|
26
26
|
mail (>= 2.7.1)
|
27
27
|
net-imap
|
28
28
|
net-pop
|
29
29
|
net-smtp
|
30
|
-
actionmailer (7.1.3.
|
31
|
-
actionpack (= 7.1.3.
|
32
|
-
actionview (= 7.1.3.
|
33
|
-
activejob (= 7.1.3.
|
34
|
-
activesupport (= 7.1.3.
|
30
|
+
actionmailer (7.1.3.4)
|
31
|
+
actionpack (= 7.1.3.4)
|
32
|
+
actionview (= 7.1.3.4)
|
33
|
+
activejob (= 7.1.3.4)
|
34
|
+
activesupport (= 7.1.3.4)
|
35
35
|
mail (~> 2.5, >= 2.5.4)
|
36
36
|
net-imap
|
37
37
|
net-pop
|
38
38
|
net-smtp
|
39
39
|
rails-dom-testing (~> 2.2)
|
40
|
-
actionpack (7.1.3.
|
41
|
-
actionview (= 7.1.3.
|
42
|
-
activesupport (= 7.1.3.
|
40
|
+
actionpack (7.1.3.4)
|
41
|
+
actionview (= 7.1.3.4)
|
42
|
+
activesupport (= 7.1.3.4)
|
43
43
|
nokogiri (>= 1.8.5)
|
44
44
|
racc
|
45
45
|
rack (>= 2.2.4)
|
@@ -47,37 +47,37 @@ GEM
|
|
47
47
|
rack-test (>= 0.6.3)
|
48
48
|
rails-dom-testing (~> 2.2)
|
49
49
|
rails-html-sanitizer (~> 1.6)
|
50
|
-
actiontext (7.1.3.
|
51
|
-
actionpack (= 7.1.3.
|
52
|
-
activerecord (= 7.1.3.
|
53
|
-
activestorage (= 7.1.3.
|
54
|
-
activesupport (= 7.1.3.
|
50
|
+
actiontext (7.1.3.4)
|
51
|
+
actionpack (= 7.1.3.4)
|
52
|
+
activerecord (= 7.1.3.4)
|
53
|
+
activestorage (= 7.1.3.4)
|
54
|
+
activesupport (= 7.1.3.4)
|
55
55
|
globalid (>= 0.6.0)
|
56
56
|
nokogiri (>= 1.8.5)
|
57
|
-
actionview (7.1.3.
|
58
|
-
activesupport (= 7.1.3.
|
57
|
+
actionview (7.1.3.4)
|
58
|
+
activesupport (= 7.1.3.4)
|
59
59
|
builder (~> 3.1)
|
60
60
|
erubi (~> 1.11)
|
61
61
|
rails-dom-testing (~> 2.2)
|
62
62
|
rails-html-sanitizer (~> 1.6)
|
63
|
-
active_type (2.
|
63
|
+
active_type (2.5.0)
|
64
64
|
activerecord (>= 3.2)
|
65
|
-
activejob (7.1.3.
|
66
|
-
activesupport (= 7.1.3.
|
65
|
+
activejob (7.1.3.4)
|
66
|
+
activesupport (= 7.1.3.4)
|
67
67
|
globalid (>= 0.3.6)
|
68
|
-
activemodel (7.1.3.
|
69
|
-
activesupport (= 7.1.3.
|
70
|
-
activerecord (7.1.3.
|
71
|
-
activemodel (= 7.1.3.
|
72
|
-
activesupport (= 7.1.3.
|
68
|
+
activemodel (7.1.3.4)
|
69
|
+
activesupport (= 7.1.3.4)
|
70
|
+
activerecord (7.1.3.4)
|
71
|
+
activemodel (= 7.1.3.4)
|
72
|
+
activesupport (= 7.1.3.4)
|
73
73
|
timeout (>= 0.4.0)
|
74
|
-
activestorage (7.1.3.
|
75
|
-
actionpack (= 7.1.3.
|
76
|
-
activejob (= 7.1.3.
|
77
|
-
activerecord (= 7.1.3.
|
78
|
-
activesupport (= 7.1.3.
|
74
|
+
activestorage (7.1.3.4)
|
75
|
+
actionpack (= 7.1.3.4)
|
76
|
+
activejob (= 7.1.3.4)
|
77
|
+
activerecord (= 7.1.3.4)
|
78
|
+
activesupport (= 7.1.3.4)
|
79
79
|
marcel (~> 1.0)
|
80
|
-
activesupport (7.1.3.
|
80
|
+
activesupport (7.1.3.4)
|
81
81
|
base64
|
82
82
|
bigdecimal
|
83
83
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
@@ -93,22 +93,21 @@ GEM
|
|
93
93
|
thor (>= 0.14.0)
|
94
94
|
ast (2.4.2)
|
95
95
|
base64 (0.2.0)
|
96
|
-
bigdecimal (3.1.
|
96
|
+
bigdecimal (3.1.8)
|
97
97
|
builder (3.2.4)
|
98
98
|
cancancan (3.5.0)
|
99
99
|
coderay (1.1.3)
|
100
100
|
colorize (0.8.1)
|
101
|
-
concurrent-ruby (1.
|
101
|
+
concurrent-ruby (1.3.1)
|
102
102
|
connection_pool (2.4.1)
|
103
103
|
crass (1.0.6)
|
104
104
|
date (3.3.4)
|
105
105
|
docile (1.4.0)
|
106
|
-
drb (2.2.
|
107
|
-
ruby2_keywords
|
106
|
+
drb (2.2.1)
|
108
107
|
erubi (1.12.0)
|
109
108
|
globalid (1.2.1)
|
110
109
|
activesupport (>= 6.1)
|
111
|
-
i18n (1.14.
|
110
|
+
i18n (1.14.5)
|
112
111
|
concurrent-ruby (~> 1.0)
|
113
112
|
io-console (0.7.2)
|
114
113
|
irb (1.11.2)
|
@@ -123,10 +122,10 @@ GEM
|
|
123
122
|
net-imap
|
124
123
|
net-pop
|
125
124
|
net-smtp
|
126
|
-
marcel (1.0.
|
125
|
+
marcel (1.0.4)
|
127
126
|
method_source (1.0.0)
|
128
127
|
mini_mime (1.1.5)
|
129
|
-
minitest (5.
|
128
|
+
minitest (5.23.1)
|
130
129
|
mutex_m (0.2.0)
|
131
130
|
net-imap (0.4.10)
|
132
131
|
date
|
@@ -138,9 +137,9 @@ GEM
|
|
138
137
|
net-smtp (0.4.0.1)
|
139
138
|
net-protocol
|
140
139
|
nio4r (2.7.0)
|
141
|
-
nokogiri (1.16.
|
140
|
+
nokogiri (1.16.5-x86_64-darwin)
|
142
141
|
racc (~> 1.4)
|
143
|
-
nokogiri (1.16.
|
142
|
+
nokogiri (1.16.5-x86_64-linux)
|
144
143
|
racc (~> 1.4)
|
145
144
|
parallel (1.22.1)
|
146
145
|
parser (3.2.1.1)
|
@@ -150,8 +149,8 @@ GEM
|
|
150
149
|
method_source (~> 1.0)
|
151
150
|
psych (5.1.2)
|
152
151
|
stringio
|
153
|
-
racc (1.
|
154
|
-
rack (3.0.
|
152
|
+
racc (1.8.0)
|
153
|
+
rack (3.0.11)
|
155
154
|
rack-session (2.0.0)
|
156
155
|
rack (>= 3.0.0)
|
157
156
|
rack-test (2.1.0)
|
@@ -159,20 +158,20 @@ GEM
|
|
159
158
|
rackup (2.1.0)
|
160
159
|
rack (>= 3)
|
161
160
|
webrick (~> 1.8)
|
162
|
-
rails (7.1.3.
|
163
|
-
actioncable (= 7.1.3.
|
164
|
-
actionmailbox (= 7.1.3.
|
165
|
-
actionmailer (= 7.1.3.
|
166
|
-
actionpack (= 7.1.3.
|
167
|
-
actiontext (= 7.1.3.
|
168
|
-
actionview (= 7.1.3.
|
169
|
-
activejob (= 7.1.3.
|
170
|
-
activemodel (= 7.1.3.
|
171
|
-
activerecord (= 7.1.3.
|
172
|
-
activestorage (= 7.1.3.
|
173
|
-
activesupport (= 7.1.3.
|
161
|
+
rails (7.1.3.4)
|
162
|
+
actioncable (= 7.1.3.4)
|
163
|
+
actionmailbox (= 7.1.3.4)
|
164
|
+
actionmailer (= 7.1.3.4)
|
165
|
+
actionpack (= 7.1.3.4)
|
166
|
+
actiontext (= 7.1.3.4)
|
167
|
+
actionview (= 7.1.3.4)
|
168
|
+
activejob (= 7.1.3.4)
|
169
|
+
activemodel (= 7.1.3.4)
|
170
|
+
activerecord (= 7.1.3.4)
|
171
|
+
activestorage (= 7.1.3.4)
|
172
|
+
activesupport (= 7.1.3.4)
|
174
173
|
bundler (>= 1.15.0)
|
175
|
-
railties (= 7.1.3.
|
174
|
+
railties (= 7.1.3.4)
|
176
175
|
rails-dom-testing (2.2.0)
|
177
176
|
activesupport (>= 5.0.0)
|
178
177
|
minitest
|
@@ -180,9 +179,9 @@ GEM
|
|
180
179
|
rails-html-sanitizer (1.6.0)
|
181
180
|
loofah (~> 2.21)
|
182
181
|
nokogiri (~> 1.14)
|
183
|
-
railties (7.1.3.
|
184
|
-
actionpack (= 7.1.3.
|
185
|
-
activesupport (= 7.1.3.
|
182
|
+
railties (7.1.3.4)
|
183
|
+
actionpack (= 7.1.3.4)
|
184
|
+
activesupport (= 7.1.3.4)
|
186
185
|
irb
|
187
186
|
rackup (>= 1.0.0)
|
188
187
|
rake (>= 12.2)
|
@@ -190,14 +189,15 @@ GEM
|
|
190
189
|
zeitwerk (~> 2.6)
|
191
190
|
rainbow (3.1.1)
|
192
191
|
rake (13.1.0)
|
193
|
-
rdoc (6.6.
|
192
|
+
rdoc (6.6.3.1)
|
194
193
|
psych (>= 4.0.0)
|
195
194
|
regexp_parser (2.7.0)
|
196
195
|
reline (0.4.3)
|
197
196
|
io-console (~> 0.5)
|
198
197
|
request_store (1.5.1)
|
199
198
|
rack (>= 1.4)
|
200
|
-
rexml (3.
|
199
|
+
rexml (3.3.3)
|
200
|
+
strscan
|
201
201
|
rubocop (1.45.1)
|
202
202
|
json (~> 2.3)
|
203
203
|
parallel (~> 1.10)
|
@@ -231,6 +231,7 @@ GEM
|
|
231
231
|
sqlite3 (1.6.2-x86_64-darwin)
|
232
232
|
sqlite3 (1.6.2-x86_64-linux)
|
233
233
|
stringio (3.1.0)
|
234
|
+
strscan (3.1.0)
|
234
235
|
thor (1.3.1)
|
235
236
|
timeout (0.4.1)
|
236
237
|
tzinfo (2.0.6)
|
@@ -260,7 +261,7 @@ DEPENDENCIES
|
|
260
261
|
rubocop (= 1.45.1)
|
261
262
|
simplecov
|
262
263
|
sprockets-rails
|
263
|
-
sqlite3
|
264
|
+
sqlite3 (< 2.0.0)
|
264
265
|
|
265
266
|
BUNDLED WITH
|
266
267
|
2.4.6
|
data/Rakefile
CHANGED
@@ -19,7 +19,7 @@ task :gemspec do
|
|
19
19
|
spec.add_development_dependency 'appraisal'
|
20
20
|
spec.add_development_dependency 'bundler'
|
21
21
|
spec.add_development_dependency 'rake'
|
22
|
-
spec.add_development_dependency 'sqlite3'
|
22
|
+
spec.add_development_dependency 'sqlite3', '<2.0.0'
|
23
23
|
spec.add_development_dependency 'cancancan'
|
24
24
|
spec.add_development_dependency 'pry'
|
25
25
|
spec.add_development_dependency 'colorize'
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.5.
|
1
|
+
1.5.6
|
data/lib/rails_ops/context.rb
CHANGED
@@ -5,7 +5,7 @@ module RailsOps
|
|
5
5
|
|
6
6
|
module ClassMethods
|
7
7
|
def virtual_has_one(name, base_class, required: false, default: nil, type: Integer)
|
8
|
-
|
8
|
+
RailsOps.deprecator.warn('virtual_has_one is deprecated and will be removed in a future version.')
|
9
9
|
|
10
10
|
fk = "#{name}_id"
|
11
11
|
attribute fk, type, default: default
|
data/lib/rails_ops/railtie.rb
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
module RailsOps
|
2
2
|
# @private
|
3
3
|
class Railtie < Rails::Railtie
|
4
|
-
initializer 'rails_ops' do |
|
4
|
+
initializer 'rails_ops' do |app|
|
5
|
+
# ---------------------------------------------------------------
|
6
|
+
# Register deprecator
|
7
|
+
# ---------------------------------------------------------------
|
8
|
+
app.deprecators[:rails_ops] = RailsOps.deprecator if app
|
9
|
+
|
5
10
|
# ---------------------------------------------------------------
|
6
11
|
# Load hookup config eagerly at application startup unless
|
7
12
|
# in development mode.
|
data/lib/rails_ops.rb
CHANGED
@@ -45,6 +45,11 @@ module RailsOps
|
|
45
45
|
Thread.current[AUTH_THREAD_STORAGE_KEY] = previous_value
|
46
46
|
end
|
47
47
|
end
|
48
|
+
|
49
|
+
# @private
|
50
|
+
def self.deprecator
|
51
|
+
@deprecator ||= ActiveSupport::Deprecation.new('2.0', 'RailsOps')
|
52
|
+
end
|
48
53
|
end
|
49
54
|
|
50
55
|
# ---------------------------------------------------------------
|
data/rails_ops.gemspec
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
# -*- encoding: utf-8 -*-
|
2
|
-
# stub: rails_ops 1.5.
|
2
|
+
# stub: rails_ops 1.5.6 ruby lib
|
3
3
|
|
4
4
|
Gem::Specification.new do |s|
|
5
5
|
s.name = "rails_ops".freeze
|
6
|
-
s.version = "1.5.
|
6
|
+
s.version = "1.5.6"
|
7
7
|
|
8
8
|
s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
|
9
9
|
s.require_paths = ["lib".freeze]
|
10
10
|
s.authors = ["Sitrox".freeze]
|
11
|
-
s.date = "2024-
|
11
|
+
s.date = "2024-08-22"
|
12
12
|
s.files = [".github/workflows/rubocop.yml".freeze, ".github/workflows/ruby.yml".freeze, ".gitignore".freeze, ".releaser_config".freeze, ".rubocop.yml".freeze, "Appraisals".freeze, "CHANGELOG.md".freeze, "Gemfile".freeze, "Gemfile.lock".freeze, "LICENSE".freeze, "README.md".freeze, "Rakefile".freeze, "VERSION".freeze, "gemfiles/rails_6.0.gemfile".freeze, "gemfiles/rails_6.1.gemfile".freeze, "gemfiles/rails_7.0.gemfile".freeze, "gemfiles/rails_7.1.gemfile".freeze, "lib/generators/operation/USAGE".freeze, "lib/generators/operation/operation_generator.rb".freeze, "lib/generators/operation/templates/controller.erb".freeze, "lib/generators/operation/templates/controller_wrapper.erb".freeze, "lib/generators/operation/templates/create.erb".freeze, "lib/generators/operation/templates/destroy.erb".freeze, "lib/generators/operation/templates/load.erb".freeze, "lib/generators/operation/templates/update.erb".freeze, "lib/generators/operation/templates/view.erb".freeze, "lib/rails_ops.rb".freeze, "lib/rails_ops/authorization_backend/abstract.rb".freeze, "lib/rails_ops/authorization_backend/can_can_can.rb".freeze, "lib/rails_ops/configuration.rb".freeze, "lib/rails_ops/context.rb".freeze, "lib/rails_ops/controller_mixin.rb".freeze, "lib/rails_ops/exceptions.rb".freeze, "lib/rails_ops/hooked_job.rb".freeze, "lib/rails_ops/hookup.rb".freeze, "lib/rails_ops/hookup/dsl.rb".freeze, "lib/rails_ops/hookup/dsl_validator.rb".freeze, "lib/rails_ops/hookup/hook.rb".freeze, "lib/rails_ops/log_subscriber.rb".freeze, "lib/rails_ops/mixins.rb".freeze, "lib/rails_ops/mixins/authorization.rb".freeze, "lib/rails_ops/mixins/log_settings.rb".freeze, "lib/rails_ops/mixins/model.rb".freeze, "lib/rails_ops/mixins/model/authorization.rb".freeze, "lib/rails_ops/mixins/model/nesting.rb".freeze, "lib/rails_ops/mixins/param_authorization.rb".freeze, "lib/rails_ops/mixins/policies.rb".freeze, "lib/rails_ops/mixins/require_context.rb".freeze, "lib/rails_ops/mixins/routes.rb".freeze, "lib/rails_ops/mixins/schema_validation.rb".freeze, "lib/rails_ops/mixins/sub_ops.rb".freeze, "lib/rails_ops/model_mixins.rb".freeze, "lib/rails_ops/model_mixins/ar_extension.rb".freeze, "lib/rails_ops/model_mixins/marshalling.rb".freeze, "lib/rails_ops/model_mixins/parent_op.rb".freeze, "lib/rails_ops/model_mixins/sti_fixes.rb".freeze, "lib/rails_ops/model_mixins/virtual_attributes.rb".freeze, "lib/rails_ops/model_mixins/virtual_attributes/virtual_column_wrapper.rb".freeze, "lib/rails_ops/model_mixins/virtual_has_one.rb".freeze, "lib/rails_ops/model_mixins/virtual_model_name.rb".freeze, "lib/rails_ops/operation.rb".freeze, "lib/rails_ops/operation/model.rb".freeze, "lib/rails_ops/operation/model/create.rb".freeze, "lib/rails_ops/operation/model/destroy.rb".freeze, "lib/rails_ops/operation/model/load.rb".freeze, "lib/rails_ops/operation/model/update.rb".freeze, "lib/rails_ops/profiler.rb".freeze, "lib/rails_ops/profiler/node.rb".freeze, "lib/rails_ops/railtie.rb".freeze, "lib/rails_ops/scoped_env.rb".freeze, "lib/rails_ops/virtual_model.rb".freeze, "rails_ops.gemspec".freeze, "test/db/models.rb".freeze, "test/db/schema.rb".freeze, "test/dummy/Rakefile".freeze, "test/dummy/app/assets/config/manifest.js".freeze, "test/dummy/app/assets/images/.keep".freeze, "test/dummy/app/assets/javascripts/application.js".freeze, "test/dummy/app/assets/javascripts/cable.js".freeze, "test/dummy/app/assets/javascripts/channels/.keep".freeze, "test/dummy/app/assets/stylesheets/application.css".freeze, "test/dummy/app/channels/application_cable/channel.rb".freeze, "test/dummy/app/channels/application_cable/connection.rb".freeze, "test/dummy/app/controllers/application_controller.rb".freeze, "test/dummy/app/controllers/concerns/.keep".freeze, "test/dummy/app/controllers/group_controller.rb".freeze, "test/dummy/app/helpers/application_helper.rb".freeze, "test/dummy/app/jobs/application_job.rb".freeze, "test/dummy/app/mailers/application_mailer.rb".freeze, "test/dummy/app/models/ability.rb".freeze, "test/dummy/app/models/animal.rb".freeze, "test/dummy/app/models/application_record.rb".freeze, "test/dummy/app/models/bird.rb".freeze, "test/dummy/app/models/cat.rb".freeze, "test/dummy/app/models/computer.rb".freeze, "test/dummy/app/models/concerns/.keep".freeze, "test/dummy/app/models/cpu.rb".freeze, "test/dummy/app/models/dog.rb".freeze, "test/dummy/app/models/flower.rb".freeze, "test/dummy/app/models/group.rb".freeze, "test/dummy/app/models/mainboard.rb".freeze, "test/dummy/app/models/nightingale.rb".freeze, "test/dummy/app/models/phoenix.rb".freeze, "test/dummy/app/models/user.rb".freeze, "test/dummy/app/views/layouts/application.html.erb".freeze, "test/dummy/app/views/layouts/mailer.html.erb".freeze, "test/dummy/app/views/layouts/mailer.text.erb".freeze, "test/dummy/bin/bundle".freeze, "test/dummy/bin/rails".freeze, "test/dummy/bin/rake".freeze, "test/dummy/bin/setup".freeze, "test/dummy/bin/update".freeze, "test/dummy/bin/yarn".freeze, "test/dummy/config.ru".freeze, "test/dummy/config/application.rb".freeze, "test/dummy/config/boot.rb".freeze, "test/dummy/config/cable.yml".freeze, "test/dummy/config/database.yml".freeze, "test/dummy/config/environment.rb".freeze, "test/dummy/config/environments/development.rb".freeze, "test/dummy/config/environments/production.rb".freeze, "test/dummy/config/environments/test.rb".freeze, "test/dummy/config/hookup.rb".freeze, "test/dummy/config/initializers/application_controller_renderer.rb".freeze, "test/dummy/config/initializers/assets.rb".freeze, "test/dummy/config/initializers/backtrace_silencers.rb".freeze, "test/dummy/config/initializers/cookies_serializer.rb".freeze, "test/dummy/config/initializers/filter_parameter_logging.rb".freeze, "test/dummy/config/initializers/inflections.rb".freeze, "test/dummy/config/initializers/mime_types.rb".freeze, "test/dummy/config/initializers/rails_ops.rb".freeze, "test/dummy/config/initializers/wrap_parameters.rb".freeze, "test/dummy/config/locales/en.yml".freeze, "test/dummy/config/puma.rb".freeze, "test/dummy/config/routes.rb".freeze, "test/dummy/config/secrets.yml".freeze, "test/dummy/config/spring.rb".freeze, "test/dummy/db/schema.rb".freeze, "test/dummy/lib/assets/.keep".freeze, "test/dummy/log/.keep".freeze, "test/dummy/package.json".freeze, "test/dummy/public/404.html".freeze, "test/dummy/public/422.html".freeze, "test/dummy/public/500.html".freeze, "test/dummy/public/apple-touch-icon-precomposed.png".freeze, "test/dummy/public/apple-touch-icon.png".freeze, "test/dummy/public/favicon.ico".freeze, "test/dummy/tmp/.keep".freeze, "test/test_helper.rb".freeze, "test/unit/rails_ops/generators/operation_generator_test.rb".freeze, "test/unit/rails_ops/hookup_test.rb".freeze, "test/unit/rails_ops/mixins/controller_test.rb".freeze, "test/unit/rails_ops/mixins/model/deep_nesting_test.rb".freeze, "test/unit/rails_ops/mixins/model/marshalling_test.rb".freeze, "test/unit/rails_ops/mixins/param_authorization_test.rb".freeze, "test/unit/rails_ops/mixins/policies_test.rb".freeze, "test/unit/rails_ops/operation/auth_test.rb".freeze, "test/unit/rails_ops/operation/model/create_test.rb".freeze, "test/unit/rails_ops/operation/model/destroy_test.rb".freeze, "test/unit/rails_ops/operation/model/load_test.rb".freeze, "test/unit/rails_ops/operation/model/sti_test.rb".freeze, "test/unit/rails_ops/operation/model/update_test.rb".freeze, "test/unit/rails_ops/operation/model_test.rb".freeze, "test/unit/rails_ops/operation/update_lazy_auth_test.rb".freeze, "test/unit/rails_ops/operation_test.rb".freeze, "test/unit/rails_ops/profiler_test.rb".freeze]
|
13
13
|
s.licenses = ["MIT".freeze]
|
14
14
|
s.rubygems_version = "3.4.6".freeze
|
@@ -20,7 +20,7 @@ Gem::Specification.new do |s|
|
|
20
20
|
s.add_development_dependency(%q<appraisal>.freeze, [">= 0"])
|
21
21
|
s.add_development_dependency(%q<bundler>.freeze, [">= 0"])
|
22
22
|
s.add_development_dependency(%q<rake>.freeze, [">= 0"])
|
23
|
-
s.add_development_dependency(%q<sqlite3>.freeze, ["
|
23
|
+
s.add_development_dependency(%q<sqlite3>.freeze, ["< 2.0.0"])
|
24
24
|
s.add_development_dependency(%q<cancancan>.freeze, [">= 0"])
|
25
25
|
s.add_development_dependency(%q<pry>.freeze, [">= 0"])
|
26
26
|
s.add_development_dependency(%q<colorize>.freeze, [">= 0"])
|
@@ -50,7 +50,7 @@ class RailsOps::Operation::ModelTest < ActiveSupport::TestCase
|
|
50
50
|
def test_virtual_model_write_attribute
|
51
51
|
cls = Class.new(RailsOps::Operation::Model) do
|
52
52
|
model RailsOps::VirtualModel, 'Example' do
|
53
|
-
attribute :name, default: 'name'
|
53
|
+
attribute :name, default: 'name'.freeze
|
54
54
|
end
|
55
55
|
end
|
56
56
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails_ops
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.5.
|
4
|
+
version: 1.5.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sitrox
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-08-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: appraisal
|
@@ -56,16 +56,16 @@ dependencies:
|
|
56
56
|
name: sqlite3
|
57
57
|
requirement: !ruby/object:Gem::Requirement
|
58
58
|
requirements:
|
59
|
-
- - "
|
59
|
+
- - "<"
|
60
60
|
- !ruby/object:Gem::Version
|
61
|
-
version:
|
61
|
+
version: 2.0.0
|
62
62
|
type: :development
|
63
63
|
prerelease: false
|
64
64
|
version_requirements: !ruby/object:Gem::Requirement
|
65
65
|
requirements:
|
66
|
-
- - "
|
66
|
+
- - "<"
|
67
67
|
- !ruby/object:Gem::Version
|
68
|
-
version:
|
68
|
+
version: 2.0.0
|
69
69
|
- !ruby/object:Gem::Dependency
|
70
70
|
name: cancancan
|
71
71
|
requirement: !ruby/object:Gem::Requirement
|
@@ -417,7 +417,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
417
417
|
- !ruby/object:Gem::Version
|
418
418
|
version: '0'
|
419
419
|
requirements: []
|
420
|
-
rubygems_version: 3.4
|
420
|
+
rubygems_version: 3.5.4
|
421
421
|
signing_key:
|
422
422
|
specification_version: 4
|
423
423
|
summary: An operations service layer for rails projects.
|