subroutine 4.1.5 → 4.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/.github/workflows/build.yml +1 -1
- data/.ruby-version +1 -1
- data/Appraisals +7 -0
- data/CHANGELOG.MD +22 -1
- data/README.md +7 -1
- data/gemfiles/rails_6.1.gemfile +1 -0
- data/gemfiles/rails_6.1.gemfile.lock +102 -23
- data/gemfiles/rails_7.0.gemfile +1 -0
- data/gemfiles/rails_7.0.gemfile.lock +100 -22
- data/gemfiles/rails_7.1.gemfile.lock +106 -26
- data/gemfiles/rails_7.2.gemfile.lock +106 -28
- data/gemfiles/rails_8.0.gemfile +9 -0
- data/gemfiles/rails_8.0.gemfile.lock +204 -0
- data/lib/subroutine/association_fields.rb +1 -1
- data/lib/subroutine/outputs/configuration.rb +8 -1
- data/lib/subroutine/outputs.rb +58 -14
- data/lib/subroutine/version.rb +2 -2
- data/lib/subroutine.rb +12 -0
- data/subroutine.gemspec +7 -1
- data/test/subroutine/outputs_test.rb +59 -0
- metadata +65 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 395466c8997f2ba267ca8aeb4d2ab31cc4da5c84d1d5cc46c603191d32f52c35
|
4
|
+
data.tar.gz: dce7398c28cb192b05dc51823143cccc9200382d998e0afad835c2a3db8dffae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c61146f544f205efef0e653485a21d93a49843415bbf37ca3afc4c466e87e4a639cc142ca75b5c2f00d646b1453d59d881becbd852be984b96bf14a55b3b4fa5
|
7
|
+
data.tar.gz: 5ebf1feeb586fefc32707e7dd2c17b54f03eee51573be7d03aa048796cdd6acaec0b541756e84c2d00a62ba198ec07f2fda5d2c004c2e87a6674fd923c59c047
|
data/.github/workflows/build.yml
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.3.7
|
data/Appraisals
CHANGED
@@ -1,11 +1,13 @@
|
|
1
1
|
appraise "rails-6.1" do
|
2
2
|
gem 'activemodel', '~> 6.1.0'
|
3
3
|
gem 'actionpack', '~> 6.1.0'
|
4
|
+
gem 'concurrent-ruby', '1.3.4'
|
4
5
|
end
|
5
6
|
|
6
7
|
appraise "rails-7.0" do
|
7
8
|
gem 'activemodel', '~> 7.0.0'
|
8
9
|
gem 'actionpack', '~> 7.0.0'
|
10
|
+
gem 'concurrent-ruby', '1.3.4'
|
9
11
|
end
|
10
12
|
|
11
13
|
appraise "rails-7.1" do
|
@@ -17,3 +19,8 @@ appraise "rails-7.2" do
|
|
17
19
|
gem 'activemodel', '~> 7.2.0'
|
18
20
|
gem 'actionpack', '~> 7.2.0'
|
19
21
|
end
|
22
|
+
|
23
|
+
appraise "rails-8.0" do
|
24
|
+
gem 'activemodel', '~> 8.0.0'
|
25
|
+
gem 'actionpack', '~> 8.0.0'
|
26
|
+
end
|
data/CHANGELOG.MD
CHANGED
@@ -1,3 +1,21 @@
|
|
1
|
+
# Changelog
|
2
|
+
|
3
|
+
## Subroutine 4.3.0
|
4
|
+
|
5
|
+
Default repository to Ruby 3.3.7, and gem to a minimum version of 3.2.0.
|
6
|
+
Tests continue to run against both Ruby 3.2 and Ruby 3.3.
|
7
|
+
|
8
|
+
## Subroutine 4.2.0
|
9
|
+
|
10
|
+
If you are using polymorphic association fields, you can now customize how Subroutine
|
11
|
+
resolves those class names to a ruby class by setting a global callable/lambda/proc:
|
12
|
+
|
13
|
+
```ruby
|
14
|
+
::Subroutine.constantize_polymorphic_class_name = ->(class_name) do
|
15
|
+
class_name.classify.constantize
|
16
|
+
end
|
17
|
+
```
|
18
|
+
|
1
19
|
## Subroutine 4.1.4
|
2
20
|
|
3
21
|
Fields using the time/timestamp/datetime caster will now default back to the old behavior, and use a `precision:` option to opt-in to the new behavior introduced in `v4.1.1`.
|
@@ -16,7 +34,7 @@ to string and re-parsing to a Time object. This fixes issues with losing usec pr
|
|
16
34
|
|
17
35
|
## Subroutine 4.1.0
|
18
36
|
|
19
|
-
A field can
|
37
|
+
A field can now opt out of the natural assignment behavior of ActiveSupport::HashWithIndifferentAccess. Top level param groups are still accessible via indifferent access but if a field sets the `bypass_indifferent_assignment` option to `true` the HashWithIndifferentAccess assignment behavior will be bypassed in favor of direct Hash-like assignment.
|
20
38
|
|
21
39
|
```ruby
|
22
40
|
class MyOp < Subroutine::Op
|
@@ -37,6 +55,9 @@ The `Subroutine::Fields` module now contains a class_attribute that allows the a
|
|
37
55
|
|
38
56
|
Removed all usage of `ungrouped` params and refactored the storage of grouped params. Params are now stored in either the provided group or the defaults group and accessed via provided_params, params, default_params, and params_with_defaults. Grouped params are accessed the same way but with the group name prefixed eg. `my_private_default_params`.
|
39
57
|
|
58
|
+
Polymorphic association fields now resolve class names via `klass.camelize.constantize`,
|
59
|
+
previously was `klass.classify.constantize`.
|
60
|
+
|
40
61
|
## Subroutine 3.0
|
41
62
|
|
42
63
|
Add support for Rails 6.1. Drop support for Rails 6.0 and lower.
|
data/README.md
CHANGED
@@ -22,6 +22,7 @@ class SignupOp < ::Subroutine::Op
|
|
22
22
|
|
23
23
|
outputs :user
|
24
24
|
outputs :business, type: Business # validate that output type is an instance of Business
|
25
|
+
outputs :heavy_operation, lazy: true # delay the execution of the output until accessed
|
25
26
|
|
26
27
|
protected
|
27
28
|
|
@@ -33,6 +34,7 @@ class SignupOp < ::Subroutine::Op
|
|
33
34
|
|
34
35
|
output :user, u
|
35
36
|
output :business, b
|
37
|
+
output :heavy_operation, -> { some_heavy_operation }
|
36
38
|
end
|
37
39
|
|
38
40
|
def create_user!
|
@@ -41,7 +43,11 @@ class SignupOp < ::Subroutine::Op
|
|
41
43
|
|
42
44
|
def create_business!(owner)
|
43
45
|
Business.create!(company_name: company_name, owner: owner)
|
44
|
-
|
46
|
+
end
|
47
|
+
|
48
|
+
def some_heavy_operation
|
49
|
+
# ...
|
50
|
+
end
|
45
51
|
|
46
52
|
def deliver_welcome_email(u)
|
47
53
|
UserMailer.welcome(u.id).deliver_later
|
data/gemfiles/rails_6.1.gemfile
CHANGED
@@ -1,29 +1,33 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
subroutine (4.
|
4
|
+
subroutine (4.4.0)
|
5
5
|
activemodel (>= 6.1)
|
6
6
|
activesupport (>= 6.1)
|
7
|
+
base64
|
8
|
+
bigdecimal
|
9
|
+
logger
|
10
|
+
mutex_m
|
7
11
|
|
8
12
|
GEM
|
9
13
|
remote: https://rubygems.org/
|
10
14
|
specs:
|
11
|
-
actionpack (6.1.7.
|
12
|
-
actionview (= 6.1.7.
|
13
|
-
activesupport (= 6.1.7.
|
15
|
+
actionpack (6.1.7.10)
|
16
|
+
actionview (= 6.1.7.10)
|
17
|
+
activesupport (= 6.1.7.10)
|
14
18
|
rack (~> 2.0, >= 2.0.9)
|
15
19
|
rack-test (>= 0.6.3)
|
16
20
|
rails-dom-testing (~> 2.0)
|
17
21
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
18
|
-
actionview (6.1.7.
|
19
|
-
activesupport (= 6.1.7.
|
22
|
+
actionview (6.1.7.10)
|
23
|
+
activesupport (= 6.1.7.10)
|
20
24
|
builder (~> 3.1)
|
21
25
|
erubi (~> 1.4)
|
22
26
|
rails-dom-testing (~> 2.0)
|
23
27
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
-
activemodel (6.1.7.
|
25
|
-
activesupport (= 6.1.7.
|
26
|
-
activesupport (6.1.7.
|
28
|
+
activemodel (6.1.7.10)
|
29
|
+
activesupport (= 6.1.7.10)
|
30
|
+
activesupport (6.1.7.10)
|
27
31
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
28
32
|
i18n (>= 1.6, < 2)
|
29
33
|
minitest (>= 5.1)
|
@@ -34,59 +38,88 @@ GEM
|
|
34
38
|
bundler
|
35
39
|
rake
|
36
40
|
thor (>= 0.14.0)
|
41
|
+
base64 (0.2.0)
|
42
|
+
bigdecimal (3.1.9)
|
37
43
|
builder (3.3.0)
|
38
|
-
byebug (
|
44
|
+
byebug (12.0.0)
|
39
45
|
concurrent-ruby (1.3.4)
|
40
46
|
crass (1.0.6)
|
41
|
-
erubi (1.13.
|
42
|
-
i18n (1.14.
|
47
|
+
erubi (1.13.1)
|
48
|
+
i18n (1.14.7)
|
43
49
|
concurrent-ruby (~> 1.0)
|
44
|
-
|
50
|
+
logger (1.7.0)
|
51
|
+
loofah (2.24.0)
|
45
52
|
crass (~> 1.0.2)
|
46
53
|
nokogiri (>= 1.12.0)
|
47
54
|
m (1.6.2)
|
48
55
|
method_source (>= 0.6.7)
|
49
56
|
rake (>= 0.9.2.2)
|
50
57
|
method_source (1.1.0)
|
51
|
-
mini_portile2 (2.8.
|
52
|
-
minitest (5.25.
|
58
|
+
mini_portile2 (2.8.8)
|
59
|
+
minitest (5.25.5)
|
53
60
|
minitest-reporters (1.7.1)
|
54
61
|
ansi
|
55
62
|
builder
|
56
63
|
minitest (>= 5.0)
|
57
64
|
ruby-progressbar
|
58
|
-
mocha (2.
|
65
|
+
mocha (2.7.1)
|
59
66
|
ruby2_keywords (>= 0.0.5)
|
60
|
-
|
67
|
+
mutex_m (0.3.0)
|
68
|
+
nokogiri (1.18.7)
|
61
69
|
mini_portile2 (~> 2.8.2)
|
62
70
|
racc (~> 1.4)
|
71
|
+
nokogiri (1.18.7-aarch64-linux-gnu)
|
72
|
+
racc (~> 1.4)
|
73
|
+
nokogiri (1.18.7-aarch64-linux-musl)
|
74
|
+
racc (~> 1.4)
|
75
|
+
nokogiri (1.18.7-arm-linux-gnu)
|
76
|
+
racc (~> 1.4)
|
77
|
+
nokogiri (1.18.7-arm-linux-musl)
|
78
|
+
racc (~> 1.4)
|
79
|
+
nokogiri (1.18.7-arm64-darwin)
|
80
|
+
racc (~> 1.4)
|
81
|
+
nokogiri (1.18.7-x86_64-darwin)
|
82
|
+
racc (~> 1.4)
|
83
|
+
nokogiri (1.18.7-x86_64-linux-gnu)
|
84
|
+
racc (~> 1.4)
|
85
|
+
nokogiri (1.18.7-x86_64-linux-musl)
|
86
|
+
racc (~> 1.4)
|
63
87
|
racc (1.8.1)
|
64
|
-
rack (2.2.
|
65
|
-
rack-test (2.
|
88
|
+
rack (2.2.13)
|
89
|
+
rack-test (2.2.0)
|
66
90
|
rack (>= 1.3)
|
67
91
|
rails-dom-testing (2.2.0)
|
68
92
|
activesupport (>= 5.0.0)
|
69
93
|
minitest
|
70
94
|
nokogiri (>= 1.6)
|
71
|
-
rails-html-sanitizer (1.6.
|
95
|
+
rails-html-sanitizer (1.6.2)
|
72
96
|
loofah (~> 2.21)
|
73
|
-
nokogiri (
|
97
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
74
98
|
rake (13.2.1)
|
75
99
|
ruby-progressbar (1.13.0)
|
76
100
|
ruby2_keywords (0.0.5)
|
77
101
|
thor (1.3.2)
|
78
102
|
tzinfo (2.0.6)
|
79
103
|
concurrent-ruby (~> 1.0)
|
80
|
-
zeitwerk (2.
|
104
|
+
zeitwerk (2.7.2)
|
81
105
|
|
82
106
|
PLATFORMS
|
107
|
+
aarch64-linux-gnu
|
108
|
+
aarch64-linux-musl
|
109
|
+
arm-linux-gnu
|
110
|
+
arm-linux-musl
|
111
|
+
arm64-darwin
|
83
112
|
ruby
|
113
|
+
x86_64-darwin
|
114
|
+
x86_64-linux-gnu
|
115
|
+
x86_64-linux-musl
|
84
116
|
|
85
117
|
DEPENDENCIES
|
86
118
|
actionpack (~> 6.1.0)
|
87
119
|
activemodel (~> 6.1.0)
|
88
120
|
appraisal
|
89
121
|
byebug
|
122
|
+
concurrent-ruby (= 1.3.4)
|
90
123
|
m
|
91
124
|
minitest
|
92
125
|
minitest-reporters
|
@@ -94,5 +127,51 @@ DEPENDENCIES
|
|
94
127
|
rake
|
95
128
|
subroutine!
|
96
129
|
|
130
|
+
CHECKSUMS
|
131
|
+
actionpack (6.1.7.10) sha256=7dd526e14b21db61c8b46d45261cf859cb86d430dd4ea4feff1c873099f5d56e
|
132
|
+
actionview (6.1.7.10) sha256=23b7a38c696eecea244d2fe1c74317e703ab24f32bf3b0ba271d3862ab07bcc2
|
133
|
+
activemodel (6.1.7.10) sha256=562d9b1d0597f450437ec7cd6540b13f3e074cce5c7b237ac76e7435a15d4b8c
|
134
|
+
activesupport (6.1.7.10) sha256=3f8e1f787a7bfbf765959ba509ef70af8293b35cb864078919365a12bf33d470
|
135
|
+
ansi (1.5.0) sha256=5408253274e33d9d27d4a98c46d2998266fd51cba58a7eb9d08f50e57ed23592
|
136
|
+
appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
|
137
|
+
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
138
|
+
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
139
|
+
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
140
|
+
byebug (12.0.0) sha256=d4a150d291cca40b66ec9ca31f754e93fed8aa266a17335f71bb0afa7fca1a1e
|
141
|
+
concurrent-ruby (1.3.4) sha256=d4aa926339b0a86b5b5054a0a8c580163e6f5dcbdfd0f4bb916b1a2570731c32
|
142
|
+
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
|
143
|
+
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
144
|
+
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
145
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
146
|
+
loofah (2.24.0) sha256=61e6a710883abb8210887f3dc868cf3ed66594c509d9ff6987621efa6651ee1e
|
147
|
+
m (1.6.2) sha256=2fb85aff050b6b699e6dbca47b45d426e2136ccdfabb64437e9630230d29108e
|
148
|
+
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
149
|
+
mini_portile2 (2.8.8) sha256=8e47136cdac04ce81750bb6c09733b37895bf06962554e4b4056d78168d70a75
|
150
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
151
|
+
minitest-reporters (1.7.1) sha256=5060413a0c95b8c32fe73e0606f3631c173a884d7900e50013e15094eb50562c
|
152
|
+
mocha (2.7.1) sha256=8f7d538d5d3ebc75fc788b3d92fbab913a93a78462d2a3ce99d1bdde7af7f851
|
153
|
+
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
154
|
+
nokogiri (1.18.7) sha256=6b63ff5defe48f30d1d3b3122f65255ca91df2caf5378c6e0482ce73ff46fb31
|
155
|
+
nokogiri (1.18.7-aarch64-linux-gnu) sha256=57a064ab5440814a69a0e040817bd8154adea68a30d2ff2b3aa515a6a06dbb5f
|
156
|
+
nokogiri (1.18.7-aarch64-linux-musl) sha256=3e442dc5b69376e84288295fe37cbb890a21ad816a7e571e5e9967b3c1e30cd3
|
157
|
+
nokogiri (1.18.7-arm-linux-gnu) sha256=337d9149deb5ae01022dff7c90f97bed81715fd586aacab0c5809ef933994c5e
|
158
|
+
nokogiri (1.18.7-arm-linux-musl) sha256=97a26edcc975f780a0822aaf7f7d7427c561067c1c9ee56bd3542960f0c28a6e
|
159
|
+
nokogiri (1.18.7-arm64-darwin) sha256=083abb2e9ed2646860f6b481a981485a658c6064caafaa81bf1cda1bada2e9d5
|
160
|
+
nokogiri (1.18.7-x86_64-darwin) sha256=081d1aa517454ba3415304e2ea51fe411d6a3a809490d0c4aa42799cada417b7
|
161
|
+
nokogiri (1.18.7-x86_64-linux-gnu) sha256=3a0bf946eb2defde13d760f869b61bc8b0c18875afdd3cffa96543cfa3a18005
|
162
|
+
nokogiri (1.18.7-x86_64-linux-musl) sha256=9d83f8ec1fc37a305fa835d7ee61a4f37899e6ccc6dcb05be6645fa9797605af
|
163
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
164
|
+
rack (2.2.13) sha256=ccee101719696a5da12ee9da6fb3b1d20cb329939e089e0e458be6e93667f0fb
|
165
|
+
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
|
166
|
+
rails-dom-testing (2.2.0) sha256=e515712e48df1f687a1d7c380fd7b07b8558faa26464474da64183a7426fa93b
|
167
|
+
rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
|
168
|
+
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
169
|
+
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
170
|
+
ruby2_keywords (0.0.5) sha256=ffd13740c573b7301cf7a2e61fc857b2a8e3d3aff32545d6f8300d8bae10e3ef
|
171
|
+
subroutine (4.4.0)
|
172
|
+
thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
|
173
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
174
|
+
zeitwerk (2.7.2) sha256=842e067cb11eb923d747249badfb5fcdc9652d6f20a1f06453317920fdcd4673
|
175
|
+
|
97
176
|
BUNDLED WITH
|
98
|
-
2.
|
177
|
+
2.6.7
|
data/gemfiles/rails_7.0.gemfile
CHANGED
@@ -1,29 +1,33 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
subroutine (4.
|
4
|
+
subroutine (4.4.0)
|
5
5
|
activemodel (>= 6.1)
|
6
6
|
activesupport (>= 6.1)
|
7
|
+
base64
|
8
|
+
bigdecimal
|
9
|
+
logger
|
10
|
+
mutex_m
|
7
11
|
|
8
12
|
GEM
|
9
13
|
remote: https://rubygems.org/
|
10
14
|
specs:
|
11
|
-
actionpack (7.0.8.
|
12
|
-
actionview (= 7.0.8.
|
13
|
-
activesupport (= 7.0.8.
|
15
|
+
actionpack (7.0.8.7)
|
16
|
+
actionview (= 7.0.8.7)
|
17
|
+
activesupport (= 7.0.8.7)
|
14
18
|
rack (~> 2.0, >= 2.2.4)
|
15
19
|
rack-test (>= 0.6.3)
|
16
20
|
rails-dom-testing (~> 2.0)
|
17
21
|
rails-html-sanitizer (~> 1.0, >= 1.2.0)
|
18
|
-
actionview (7.0.8.
|
19
|
-
activesupport (= 7.0.8.
|
22
|
+
actionview (7.0.8.7)
|
23
|
+
activesupport (= 7.0.8.7)
|
20
24
|
builder (~> 3.1)
|
21
25
|
erubi (~> 1.4)
|
22
26
|
rails-dom-testing (~> 2.0)
|
23
27
|
rails-html-sanitizer (~> 1.1, >= 1.2.0)
|
24
|
-
activemodel (7.0.8.
|
25
|
-
activesupport (= 7.0.8.
|
26
|
-
activesupport (7.0.8.
|
28
|
+
activemodel (7.0.8.7)
|
29
|
+
activesupport (= 7.0.8.7)
|
30
|
+
activesupport (7.0.8.7)
|
27
31
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
28
32
|
i18n (>= 1.6, < 2)
|
29
33
|
minitest (>= 5.1)
|
@@ -33,43 +37,63 @@ GEM
|
|
33
37
|
bundler
|
34
38
|
rake
|
35
39
|
thor (>= 0.14.0)
|
40
|
+
base64 (0.2.0)
|
41
|
+
bigdecimal (3.1.9)
|
36
42
|
builder (3.3.0)
|
37
|
-
byebug (
|
43
|
+
byebug (12.0.0)
|
38
44
|
concurrent-ruby (1.3.4)
|
39
45
|
crass (1.0.6)
|
40
|
-
erubi (1.13.
|
41
|
-
i18n (1.14.
|
46
|
+
erubi (1.13.1)
|
47
|
+
i18n (1.14.7)
|
42
48
|
concurrent-ruby (~> 1.0)
|
43
|
-
|
49
|
+
logger (1.7.0)
|
50
|
+
loofah (2.24.0)
|
44
51
|
crass (~> 1.0.2)
|
45
52
|
nokogiri (>= 1.12.0)
|
46
53
|
m (1.6.2)
|
47
54
|
method_source (>= 0.6.7)
|
48
55
|
rake (>= 0.9.2.2)
|
49
56
|
method_source (1.1.0)
|
50
|
-
mini_portile2 (2.8.
|
51
|
-
minitest (5.25.
|
57
|
+
mini_portile2 (2.8.8)
|
58
|
+
minitest (5.25.5)
|
52
59
|
minitest-reporters (1.7.1)
|
53
60
|
ansi
|
54
61
|
builder
|
55
62
|
minitest (>= 5.0)
|
56
63
|
ruby-progressbar
|
57
|
-
mocha (2.
|
64
|
+
mocha (2.7.1)
|
58
65
|
ruby2_keywords (>= 0.0.5)
|
59
|
-
|
66
|
+
mutex_m (0.3.0)
|
67
|
+
nokogiri (1.18.7)
|
60
68
|
mini_portile2 (~> 2.8.2)
|
61
69
|
racc (~> 1.4)
|
70
|
+
nokogiri (1.18.7-aarch64-linux-gnu)
|
71
|
+
racc (~> 1.4)
|
72
|
+
nokogiri (1.18.7-aarch64-linux-musl)
|
73
|
+
racc (~> 1.4)
|
74
|
+
nokogiri (1.18.7-arm-linux-gnu)
|
75
|
+
racc (~> 1.4)
|
76
|
+
nokogiri (1.18.7-arm-linux-musl)
|
77
|
+
racc (~> 1.4)
|
78
|
+
nokogiri (1.18.7-arm64-darwin)
|
79
|
+
racc (~> 1.4)
|
80
|
+
nokogiri (1.18.7-x86_64-darwin)
|
81
|
+
racc (~> 1.4)
|
82
|
+
nokogiri (1.18.7-x86_64-linux-gnu)
|
83
|
+
racc (~> 1.4)
|
84
|
+
nokogiri (1.18.7-x86_64-linux-musl)
|
85
|
+
racc (~> 1.4)
|
62
86
|
racc (1.8.1)
|
63
|
-
rack (2.2.
|
64
|
-
rack-test (2.
|
87
|
+
rack (2.2.13)
|
88
|
+
rack-test (2.2.0)
|
65
89
|
rack (>= 1.3)
|
66
90
|
rails-dom-testing (2.2.0)
|
67
91
|
activesupport (>= 5.0.0)
|
68
92
|
minitest
|
69
93
|
nokogiri (>= 1.6)
|
70
|
-
rails-html-sanitizer (1.6.
|
94
|
+
rails-html-sanitizer (1.6.2)
|
71
95
|
loofah (~> 2.21)
|
72
|
-
nokogiri (
|
96
|
+
nokogiri (>= 1.15.7, != 1.16.7, != 1.16.6, != 1.16.5, != 1.16.4, != 1.16.3, != 1.16.2, != 1.16.1, != 1.16.0.rc1, != 1.16.0)
|
73
97
|
rake (13.2.1)
|
74
98
|
ruby-progressbar (1.13.0)
|
75
99
|
ruby2_keywords (0.0.5)
|
@@ -78,13 +102,22 @@ GEM
|
|
78
102
|
concurrent-ruby (~> 1.0)
|
79
103
|
|
80
104
|
PLATFORMS
|
105
|
+
aarch64-linux-gnu
|
106
|
+
aarch64-linux-musl
|
107
|
+
arm-linux-gnu
|
108
|
+
arm-linux-musl
|
109
|
+
arm64-darwin
|
81
110
|
ruby
|
111
|
+
x86_64-darwin
|
112
|
+
x86_64-linux-gnu
|
113
|
+
x86_64-linux-musl
|
82
114
|
|
83
115
|
DEPENDENCIES
|
84
116
|
actionpack (~> 7.0.0)
|
85
117
|
activemodel (~> 7.0.0)
|
86
118
|
appraisal
|
87
119
|
byebug
|
120
|
+
concurrent-ruby (= 1.3.4)
|
88
121
|
m
|
89
122
|
minitest
|
90
123
|
minitest-reporters
|
@@ -92,5 +125,50 @@ DEPENDENCIES
|
|
92
125
|
rake
|
93
126
|
subroutine!
|
94
127
|
|
128
|
+
CHECKSUMS
|
129
|
+
actionpack (7.0.8.7) sha256=40e6b1d687904a4fd2285d1fa3aad3d9a9d9ba8fd8858dd0faa9f4673c3f5e2c
|
130
|
+
actionview (7.0.8.7) sha256=be975bc9c61903fe5da80a97c345271159033bcbba63988c7f27b6b8b98f7fed
|
131
|
+
activemodel (7.0.8.7) sha256=f13b04bb055c1e85b965ce40b0a2e671b8d97835083597bc7fbc04cde0f40a83
|
132
|
+
activesupport (7.0.8.7) sha256=df4702375de924aae81709c831605317c5417f0bd9e502a0373ff84a067204ff
|
133
|
+
ansi (1.5.0) sha256=5408253274e33d9d27d4a98c46d2998266fd51cba58a7eb9d08f50e57ed23592
|
134
|
+
appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
|
135
|
+
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
136
|
+
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
137
|
+
builder (3.3.0) sha256=497918d2f9dca528fdca4b88d84e4ef4387256d984b8154e9d5d3fe5a9c8835f
|
138
|
+
byebug (12.0.0) sha256=d4a150d291cca40b66ec9ca31f754e93fed8aa266a17335f71bb0afa7fca1a1e
|
139
|
+
concurrent-ruby (1.3.4) sha256=d4aa926339b0a86b5b5054a0a8c580163e6f5dcbdfd0f4bb916b1a2570731c32
|
140
|
+
crass (1.0.6) sha256=dc516022a56e7b3b156099abc81b6d2b08ea1ed12676ac7a5657617f012bd45d
|
141
|
+
erubi (1.13.1) sha256=a082103b0885dbc5ecf1172fede897f9ebdb745a4b97a5e8dc63953db1ee4ad9
|
142
|
+
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
143
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
144
|
+
loofah (2.24.0) sha256=61e6a710883abb8210887f3dc868cf3ed66594c509d9ff6987621efa6651ee1e
|
145
|
+
m (1.6.2) sha256=2fb85aff050b6b699e6dbca47b45d426e2136ccdfabb64437e9630230d29108e
|
146
|
+
method_source (1.1.0) sha256=181301c9c45b731b4769bc81e8860e72f9161ad7d66dd99103c9ab84f560f5c5
|
147
|
+
mini_portile2 (2.8.8) sha256=8e47136cdac04ce81750bb6c09733b37895bf06962554e4b4056d78168d70a75
|
148
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
149
|
+
minitest-reporters (1.7.1) sha256=5060413a0c95b8c32fe73e0606f3631c173a884d7900e50013e15094eb50562c
|
150
|
+
mocha (2.7.1) sha256=8f7d538d5d3ebc75fc788b3d92fbab913a93a78462d2a3ce99d1bdde7af7f851
|
151
|
+
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
152
|
+
nokogiri (1.18.7) sha256=6b63ff5defe48f30d1d3b3122f65255ca91df2caf5378c6e0482ce73ff46fb31
|
153
|
+
nokogiri (1.18.7-aarch64-linux-gnu) sha256=57a064ab5440814a69a0e040817bd8154adea68a30d2ff2b3aa515a6a06dbb5f
|
154
|
+
nokogiri (1.18.7-aarch64-linux-musl) sha256=3e442dc5b69376e84288295fe37cbb890a21ad816a7e571e5e9967b3c1e30cd3
|
155
|
+
nokogiri (1.18.7-arm-linux-gnu) sha256=337d9149deb5ae01022dff7c90f97bed81715fd586aacab0c5809ef933994c5e
|
156
|
+
nokogiri (1.18.7-arm-linux-musl) sha256=97a26edcc975f780a0822aaf7f7d7427c561067c1c9ee56bd3542960f0c28a6e
|
157
|
+
nokogiri (1.18.7-arm64-darwin) sha256=083abb2e9ed2646860f6b481a981485a658c6064caafaa81bf1cda1bada2e9d5
|
158
|
+
nokogiri (1.18.7-x86_64-darwin) sha256=081d1aa517454ba3415304e2ea51fe411d6a3a809490d0c4aa42799cada417b7
|
159
|
+
nokogiri (1.18.7-x86_64-linux-gnu) sha256=3a0bf946eb2defde13d760f869b61bc8b0c18875afdd3cffa96543cfa3a18005
|
160
|
+
nokogiri (1.18.7-x86_64-linux-musl) sha256=9d83f8ec1fc37a305fa835d7ee61a4f37899e6ccc6dcb05be6645fa9797605af
|
161
|
+
racc (1.8.1) sha256=4a7f6929691dbec8b5209a0b373bc2614882b55fc5d2e447a21aaa691303d62f
|
162
|
+
rack (2.2.13) sha256=ccee101719696a5da12ee9da6fb3b1d20cb329939e089e0e458be6e93667f0fb
|
163
|
+
rack-test (2.2.0) sha256=005a36692c306ac0b4a9350355ee080fd09ddef1148a5f8b2ac636c720f5c463
|
164
|
+
rails-dom-testing (2.2.0) sha256=e515712e48df1f687a1d7c380fd7b07b8558faa26464474da64183a7426fa93b
|
165
|
+
rails-html-sanitizer (1.6.2) sha256=35fce2ca8242da8775c83b6ba9c1bcaad6751d9eb73c1abaa8403475ab89a560
|
166
|
+
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
167
|
+
ruby-progressbar (1.13.0) sha256=80fc9c47a9b640d6834e0dc7b3c94c9df37f08cb072b7761e4a71e22cff29b33
|
168
|
+
ruby2_keywords (0.0.5) sha256=ffd13740c573b7301cf7a2e61fc857b2a8e3d3aff32545d6f8300d8bae10e3ef
|
169
|
+
subroutine (4.4.0)
|
170
|
+
thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
|
171
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
172
|
+
|
95
173
|
BUNDLED WITH
|
96
|
-
2.
|
174
|
+
2.6.7
|