stator 0.5.0 → 0.8.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/CODEOWNERS +1 -0
- data/.github/dependabot.yml +24 -0
- data/.github/workflows/build.yml +4 -3
- data/.ruby-version +1 -1
- data/Appraisals +15 -8
- data/Gemfile +6 -6
- data/README.md +20 -4
- data/gemfiles/activerecord_6.0.gemfile +2 -1
- data/gemfiles/activerecord_6.0.gemfile.lock +69 -31
- data/gemfiles/activerecord_6.1.gemfile +2 -1
- data/gemfiles/activerecord_6.1.gemfile.lock +68 -31
- data/gemfiles/activerecord_7.0.gemfile +2 -1
- data/gemfiles/activerecord_7.0.gemfile.lock +66 -30
- data/gemfiles/{activerecord_5.1.gemfile → activerecord_7.1.gemfile} +1 -1
- data/gemfiles/activerecord_7.1.gemfile.lock +114 -0
- data/gemfiles/{activerecord_5.2.gemfile → activerecord_7.2.gemfile} +1 -1
- data/gemfiles/activerecord_7.2.gemfile.lock +113 -0
- data/gemfiles/activerecord_8.0.gemfile +11 -0
- data/gemfiles/activerecord_8.0.gemfile.lock +116 -0
- data/lib/stator/version.rb +1 -1
- data/spec/model_spec.rb +81 -2
- data/spec/spec_helper.rb +0 -1
- data/stator.gemspec +10 -3
- metadata +86 -14
- data/gemfiles/activerecord_5.1.gemfile.lock +0 -64
- data/gemfiles/activerecord_5.2.gemfile.lock +0 -64
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3a5f5716fec773ccafe1308d20a5db86c1efc0ba71467cbc82c208e97782ad07
|
4
|
+
data.tar.gz: '09a4cb4b225d8897ec737da39be2c571e59ad005fd3a771a7afa7f19b56f8ac6'
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 52e7539f9a6933b0c9badbd8dd276be7cc8518a4bd3f62b98d5095ee5c92aff165fba2e9dd6614c80f93251ba599750dfd7ba1e12f445e3b2339effe46d17d02
|
7
|
+
data.tar.gz: 1a338be123d40ef09c21a1e986a768e9156de07ea02b911439dd9ce5887d5db528b266d01e1812be610f06d1d0fc8b495d659f5e0d3dd61ae72247a99fec46b0
|
data/.github/CODEOWNERS
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
.github/workflows @guideline-tech/engineering
|
@@ -0,0 +1,24 @@
|
|
1
|
+
version: 2
|
2
|
+
updates:
|
3
|
+
- package-ecosystem: "github-actions"
|
4
|
+
directory: "/"
|
5
|
+
open-pull-requests-limit: 20
|
6
|
+
schedule:
|
7
|
+
interval: "daily"
|
8
|
+
time: "09:00"
|
9
|
+
timezone: "America/New_York"
|
10
|
+
commit-message:
|
11
|
+
prefix: "[github-actions] "
|
12
|
+
- package-ecosystem: "bundler"
|
13
|
+
directory: "/"
|
14
|
+
schedule:
|
15
|
+
interval: "daily"
|
16
|
+
time: "08:30"
|
17
|
+
timezone: "America/New_York"
|
18
|
+
allow:
|
19
|
+
- dependency-type: "all"
|
20
|
+
versioning-strategy: increase
|
21
|
+
open-pull-requests-limit: 20
|
22
|
+
insecure-external-code-execution: deny
|
23
|
+
commit-message:
|
24
|
+
prefix: "[bundler] "
|
data/.github/workflows/build.yml
CHANGED
@@ -10,10 +10,11 @@ jobs:
|
|
10
10
|
strategy:
|
11
11
|
fail-fast: false
|
12
12
|
matrix:
|
13
|
-
ruby-version: [2.
|
14
|
-
experimental: [false]
|
13
|
+
ruby-version: [3.2, 3.3, 3.4]
|
15
14
|
steps:
|
16
|
-
- uses: actions/checkout@
|
15
|
+
- uses: actions/checkout@v4
|
16
|
+
with:
|
17
|
+
show-progress: 'false'
|
17
18
|
- uses: ruby/setup-ruby@v1
|
18
19
|
with:
|
19
20
|
ruby-version: ${{ matrix.ruby-version }}
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
3.4.2
|
data/Appraisals
CHANGED
@@ -1,19 +1,26 @@
|
|
1
|
-
appraise "activerecord-5.1" do
|
2
|
-
gem "activerecord", "~> 5.1.0"
|
3
|
-
end
|
4
|
-
|
5
|
-
appraise "activerecord-5.2" do
|
6
|
-
gem "activerecord", "~> 5.2.0"
|
7
|
-
end
|
8
|
-
|
9
1
|
appraise "activerecord-6.0" do
|
10
2
|
gem "activerecord", "~> 6.0.0"
|
3
|
+
gem "concurrent-ruby", "1.3.4"
|
11
4
|
end
|
12
5
|
|
13
6
|
appraise "activerecord-6.1" do
|
14
7
|
gem "activerecord", "~> 6.1.0"
|
8
|
+
gem "concurrent-ruby", "1.3.4"
|
15
9
|
end
|
16
10
|
|
17
11
|
appraise "activerecord-7.0" do
|
18
12
|
gem "activerecord", "~> 7.0.0"
|
13
|
+
gem "concurrent-ruby", "1.3.4"
|
14
|
+
end
|
15
|
+
|
16
|
+
appraise "activerecord-7.1" do
|
17
|
+
gem "activerecord", "~> 7.1.0"
|
18
|
+
end
|
19
|
+
|
20
|
+
appraise "activerecord-7.2" do
|
21
|
+
gem "activerecord", "~> 7.2.0"
|
22
|
+
end
|
23
|
+
|
24
|
+
appraise "activerecord-8.0" do
|
25
|
+
gem "activerecord", "~> 8.0.0"
|
19
26
|
end
|
data/Gemfile
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
|
4
|
-
|
3
|
+
# Specify your gem's dependencies in stator.gemspec
|
5
4
|
gemspec
|
6
5
|
|
7
|
-
gem
|
8
|
-
|
9
|
-
gem
|
10
|
-
gem
|
6
|
+
gem "appraisal"
|
7
|
+
|
8
|
+
gem "activerecord-nulldb-adapter"
|
9
|
+
gem "rake"
|
10
|
+
gem "rspec"
|
data/README.md
CHANGED
@@ -108,7 +108,6 @@ u.can_activate?
|
|
108
108
|
|
109
109
|
Note that asking if a transition can take place via `can_[transition_name]?` does not invoke validations. It simply determines whether the record is in a state which the transition can take place from.
|
110
110
|
|
111
|
-
|
112
111
|
The `track: true` option enables timekeeping of the state transition. It will try to set a field in the format of "state_field_at" before saving the record. For example, in the previous state machine the following would occur:
|
113
112
|
|
114
113
|
```ruby
|
@@ -140,7 +139,6 @@ class User < ActiveRecord::Base
|
|
140
139
|
end
|
141
140
|
```
|
142
141
|
|
143
|
-
|
144
142
|
If you need to access the state machine directly, you can do so via the class:
|
145
143
|
|
146
144
|
```ruby
|
@@ -208,7 +206,25 @@ end
|
|
208
206
|
|
209
207
|
The `opposite` method also accepts the scope and constant options, but does not yield to a block since the state definitions are inheritenly tied to the ones described in the parent state_alias block.
|
210
208
|
|
209
|
+
## Development
|
210
|
+
|
211
|
+
Run test suite against current Rails version:
|
212
|
+
|
213
|
+
```
|
214
|
+
bundle exec rake spec
|
215
|
+
```
|
216
|
+
|
217
|
+
Run test suite against all supported Rails versions using `appraisal`:
|
218
|
+
|
219
|
+
```
|
220
|
+
bundle exec appraisal rake spec
|
221
|
+
```
|
222
|
+
|
223
|
+
For help updating the `Gemfile` or changing supported Rails versions, see the `appraisal` gem [README](https://github.com/thoughtbot/appraisal#usage).
|
224
|
+
|
225
|
+
Note that the gemfiles in `gemfiles/*` are auto-generated by `appraisal` and should not be modified directly.
|
226
|
+
|
211
227
|
#### TODO
|
212
228
|
|
213
|
-
|
214
|
-
|
229
|
+
- Allow for multiple variations of a transition (shift_down style - :third_gear => :second_gear, :second_gear => :first_gear)
|
230
|
+
- Create adapters for different backends (not just ActiveRecord)
|
@@ -1,53 +1,63 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
stator (0.
|
5
|
-
activerecord
|
4
|
+
stator (0.8.0)
|
5
|
+
activerecord (>= 6.0)
|
6
|
+
base64
|
7
|
+
benchmark
|
8
|
+
bigdecimal
|
9
|
+
logger
|
10
|
+
mutex_m
|
6
11
|
|
7
12
|
GEM
|
8
13
|
remote: https://rubygems.org/
|
9
14
|
specs:
|
10
|
-
activemodel (6.0.
|
11
|
-
activesupport (= 6.0.
|
12
|
-
activerecord (6.0.
|
13
|
-
activemodel (= 6.0.
|
14
|
-
activesupport (= 6.0.
|
15
|
-
activerecord-nulldb-adapter (
|
16
|
-
activerecord (>=
|
17
|
-
activesupport (6.0.
|
15
|
+
activemodel (6.0.6.1)
|
16
|
+
activesupport (= 6.0.6.1)
|
17
|
+
activerecord (6.0.6.1)
|
18
|
+
activemodel (= 6.0.6.1)
|
19
|
+
activesupport (= 6.0.6.1)
|
20
|
+
activerecord-nulldb-adapter (1.1.1)
|
21
|
+
activerecord (>= 6.0, < 8.1)
|
22
|
+
activesupport (6.0.6.1)
|
18
23
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
24
|
i18n (>= 0.7, < 2)
|
20
25
|
minitest (~> 5.1)
|
21
26
|
tzinfo (~> 1.1)
|
22
27
|
zeitwerk (~> 2.2, >= 2.2.2)
|
23
|
-
appraisal (2.
|
28
|
+
appraisal (2.5.0)
|
24
29
|
bundler
|
25
30
|
rake
|
26
31
|
thor (>= 0.14.0)
|
27
|
-
|
28
|
-
|
29
|
-
|
32
|
+
base64 (0.2.0)
|
33
|
+
benchmark (0.4.0)
|
34
|
+
bigdecimal (3.1.9)
|
35
|
+
concurrent-ruby (1.3.4)
|
36
|
+
diff-lcs (1.6.1)
|
37
|
+
i18n (1.14.7)
|
30
38
|
concurrent-ruby (~> 1.0)
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
rspec-
|
37
|
-
|
38
|
-
rspec-
|
39
|
-
rspec-
|
39
|
+
logger (1.7.0)
|
40
|
+
minitest (5.25.5)
|
41
|
+
mutex_m (0.3.0)
|
42
|
+
rake (13.2.1)
|
43
|
+
rspec (3.13.0)
|
44
|
+
rspec-core (~> 3.13.0)
|
45
|
+
rspec-expectations (~> 3.13.0)
|
46
|
+
rspec-mocks (~> 3.13.0)
|
47
|
+
rspec-core (3.13.3)
|
48
|
+
rspec-support (~> 3.13.0)
|
49
|
+
rspec-expectations (3.13.3)
|
40
50
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-mocks (3.
|
51
|
+
rspec-support (~> 3.13.0)
|
52
|
+
rspec-mocks (3.13.2)
|
43
53
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-support (3.
|
46
|
-
thor (1.2
|
54
|
+
rspec-support (~> 3.13.0)
|
55
|
+
rspec-support (3.13.2)
|
56
|
+
thor (1.3.2)
|
47
57
|
thread_safe (0.3.6)
|
48
|
-
tzinfo (1.2.
|
58
|
+
tzinfo (1.2.11)
|
49
59
|
thread_safe (~> 0.1)
|
50
|
-
zeitwerk (2.
|
60
|
+
zeitwerk (2.7.2)
|
51
61
|
|
52
62
|
PLATFORMS
|
53
63
|
ruby
|
@@ -56,9 +66,37 @@ DEPENDENCIES
|
|
56
66
|
activerecord (~> 6.0.0)
|
57
67
|
activerecord-nulldb-adapter
|
58
68
|
appraisal
|
69
|
+
concurrent-ruby (= 1.3.4)
|
59
70
|
rake
|
60
71
|
rspec
|
61
72
|
stator!
|
62
73
|
|
74
|
+
CHECKSUMS
|
75
|
+
activemodel (6.0.6.1) sha256=8856126e35d604084e5531dc6d29095bee431b93e7899687dfec59da929b6f5f
|
76
|
+
activerecord (6.0.6.1) sha256=be387b7c8997ea5373d42bf56d2789914a742b67357701677d769ce8a31ba139
|
77
|
+
activerecord-nulldb-adapter (1.1.1) sha256=034c91106183b954b072fba14c2786adf1a2b9e852ce04f85f823afaf03e9820
|
78
|
+
activesupport (6.0.6.1) sha256=6f01805552bb9b123db05b506ddc64af8285ccfc835a3169c9ec6c8a1d8c43ac
|
79
|
+
appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
|
80
|
+
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
81
|
+
benchmark (0.4.0) sha256=0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
|
82
|
+
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
83
|
+
concurrent-ruby (1.3.4) sha256=d4aa926339b0a86b5b5054a0a8c580163e6f5dcbdfd0f4bb916b1a2570731c32
|
84
|
+
diff-lcs (1.6.1) sha256=12a5a83f3e37a8e2f4427268e305914d5f1879f22b4e73bb1a09f76a3dd86cd4
|
85
|
+
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
86
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
87
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
88
|
+
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
89
|
+
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
90
|
+
rspec (3.13.0) sha256=d490914ac1d5a5a64a0e1400c1d54ddd2a501324d703b8cfe83f458337bab993
|
91
|
+
rspec-core (3.13.3) sha256=25136507f4f9cf2e8977a2851e64e438b4331646054e345998714108745cdfe4
|
92
|
+
rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
|
93
|
+
rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
|
94
|
+
rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
|
95
|
+
stator (0.8.0)
|
96
|
+
thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
|
97
|
+
thread_safe (0.3.6) sha256=9ed7072821b51c57e8d6b7011a8e282e25aeea3a4065eab326e43f66f063b05a
|
98
|
+
tzinfo (1.2.11) sha256=6501f6a12175ca0243118b83f7c7c2b7978aaec7a0980550a124d007ad6361b6
|
99
|
+
zeitwerk (2.7.2) sha256=842e067cb11eb923d747249badfb5fcdc9652d6f20a1f06453317920fdcd4673
|
100
|
+
|
63
101
|
BUNDLED WITH
|
64
|
-
2.
|
102
|
+
2.6.7
|
@@ -1,52 +1,62 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
stator (0.
|
5
|
-
activerecord
|
4
|
+
stator (0.8.0)
|
5
|
+
activerecord (>= 6.0)
|
6
|
+
base64
|
7
|
+
benchmark
|
8
|
+
bigdecimal
|
9
|
+
logger
|
10
|
+
mutex_m
|
6
11
|
|
7
12
|
GEM
|
8
13
|
remote: https://rubygems.org/
|
9
14
|
specs:
|
10
|
-
activemodel (6.1.
|
11
|
-
activesupport (= 6.1.
|
12
|
-
activerecord (6.1.
|
13
|
-
activemodel (= 6.1.
|
14
|
-
activesupport (= 6.1.
|
15
|
-
activerecord-nulldb-adapter (
|
16
|
-
activerecord (>=
|
17
|
-
activesupport (6.1.
|
15
|
+
activemodel (6.1.7.10)
|
16
|
+
activesupport (= 6.1.7.10)
|
17
|
+
activerecord (6.1.7.10)
|
18
|
+
activemodel (= 6.1.7.10)
|
19
|
+
activesupport (= 6.1.7.10)
|
20
|
+
activerecord-nulldb-adapter (1.1.1)
|
21
|
+
activerecord (>= 6.0, < 8.1)
|
22
|
+
activesupport (6.1.7.10)
|
18
23
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
24
|
i18n (>= 1.6, < 2)
|
20
25
|
minitest (>= 5.1)
|
21
26
|
tzinfo (~> 2.0)
|
22
27
|
zeitwerk (~> 2.3)
|
23
|
-
appraisal (2.
|
28
|
+
appraisal (2.5.0)
|
24
29
|
bundler
|
25
30
|
rake
|
26
31
|
thor (>= 0.14.0)
|
27
|
-
|
28
|
-
|
29
|
-
|
32
|
+
base64 (0.2.0)
|
33
|
+
benchmark (0.4.0)
|
34
|
+
bigdecimal (3.1.9)
|
35
|
+
concurrent-ruby (1.3.4)
|
36
|
+
diff-lcs (1.6.1)
|
37
|
+
i18n (1.14.7)
|
30
38
|
concurrent-ruby (~> 1.0)
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
rspec-
|
37
|
-
|
38
|
-
rspec-
|
39
|
-
rspec-
|
39
|
+
logger (1.7.0)
|
40
|
+
minitest (5.25.5)
|
41
|
+
mutex_m (0.3.0)
|
42
|
+
rake (13.2.1)
|
43
|
+
rspec (3.13.0)
|
44
|
+
rspec-core (~> 3.13.0)
|
45
|
+
rspec-expectations (~> 3.13.0)
|
46
|
+
rspec-mocks (~> 3.13.0)
|
47
|
+
rspec-core (3.13.3)
|
48
|
+
rspec-support (~> 3.13.0)
|
49
|
+
rspec-expectations (3.13.3)
|
40
50
|
diff-lcs (>= 1.2.0, < 2.0)
|
41
|
-
rspec-support (~> 3.
|
42
|
-
rspec-mocks (3.
|
51
|
+
rspec-support (~> 3.13.0)
|
52
|
+
rspec-mocks (3.13.2)
|
43
53
|
diff-lcs (>= 1.2.0, < 2.0)
|
44
|
-
rspec-support (~> 3.
|
45
|
-
rspec-support (3.
|
46
|
-
thor (1.2
|
47
|
-
tzinfo (2.0.
|
54
|
+
rspec-support (~> 3.13.0)
|
55
|
+
rspec-support (3.13.2)
|
56
|
+
thor (1.3.2)
|
57
|
+
tzinfo (2.0.6)
|
48
58
|
concurrent-ruby (~> 1.0)
|
49
|
-
zeitwerk (2.
|
59
|
+
zeitwerk (2.7.2)
|
50
60
|
|
51
61
|
PLATFORMS
|
52
62
|
ruby
|
@@ -55,9 +65,36 @@ DEPENDENCIES
|
|
55
65
|
activerecord (~> 6.1.0)
|
56
66
|
activerecord-nulldb-adapter
|
57
67
|
appraisal
|
68
|
+
concurrent-ruby (= 1.3.4)
|
58
69
|
rake
|
59
70
|
rspec
|
60
71
|
stator!
|
61
72
|
|
73
|
+
CHECKSUMS
|
74
|
+
activemodel (6.1.7.10) sha256=562d9b1d0597f450437ec7cd6540b13f3e074cce5c7b237ac76e7435a15d4b8c
|
75
|
+
activerecord (6.1.7.10) sha256=db1719ef443a5437badcaa1d0fb5da7db985988fb69cc37085ca6bcc569fb31a
|
76
|
+
activerecord-nulldb-adapter (1.1.1) sha256=034c91106183b954b072fba14c2786adf1a2b9e852ce04f85f823afaf03e9820
|
77
|
+
activesupport (6.1.7.10) sha256=3f8e1f787a7bfbf765959ba509ef70af8293b35cb864078919365a12bf33d470
|
78
|
+
appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
|
79
|
+
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
80
|
+
benchmark (0.4.0) sha256=0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
|
81
|
+
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
82
|
+
concurrent-ruby (1.3.4) sha256=d4aa926339b0a86b5b5054a0a8c580163e6f5dcbdfd0f4bb916b1a2570731c32
|
83
|
+
diff-lcs (1.6.1) sha256=12a5a83f3e37a8e2f4427268e305914d5f1879f22b4e73bb1a09f76a3dd86cd4
|
84
|
+
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
85
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
86
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
87
|
+
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
88
|
+
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
89
|
+
rspec (3.13.0) sha256=d490914ac1d5a5a64a0e1400c1d54ddd2a501324d703b8cfe83f458337bab993
|
90
|
+
rspec-core (3.13.3) sha256=25136507f4f9cf2e8977a2851e64e438b4331646054e345998714108745cdfe4
|
91
|
+
rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
|
92
|
+
rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
|
93
|
+
rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
|
94
|
+
stator (0.8.0)
|
95
|
+
thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
|
96
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
97
|
+
zeitwerk (2.7.2) sha256=842e067cb11eb923d747249badfb5fcdc9652d6f20a1f06453317920fdcd4673
|
98
|
+
|
62
99
|
BUNDLED WITH
|
63
|
-
2.
|
100
|
+
2.6.7
|
@@ -1,49 +1,59 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
stator (0.
|
5
|
-
activerecord
|
4
|
+
stator (0.8.0)
|
5
|
+
activerecord (>= 6.0)
|
6
|
+
base64
|
7
|
+
benchmark
|
8
|
+
bigdecimal
|
9
|
+
logger
|
10
|
+
mutex_m
|
6
11
|
|
7
12
|
GEM
|
8
13
|
remote: https://rubygems.org/
|
9
14
|
specs:
|
10
|
-
activemodel (7.0.
|
11
|
-
activesupport (= 7.0.
|
12
|
-
activerecord (7.0.
|
13
|
-
activemodel (= 7.0.
|
14
|
-
activesupport (= 7.0.
|
15
|
-
activerecord-nulldb-adapter (
|
16
|
-
activerecord (>=
|
17
|
-
activesupport (7.0.
|
15
|
+
activemodel (7.0.8.7)
|
16
|
+
activesupport (= 7.0.8.7)
|
17
|
+
activerecord (7.0.8.7)
|
18
|
+
activemodel (= 7.0.8.7)
|
19
|
+
activesupport (= 7.0.8.7)
|
20
|
+
activerecord-nulldb-adapter (1.1.1)
|
21
|
+
activerecord (>= 6.0, < 8.1)
|
22
|
+
activesupport (7.0.8.7)
|
18
23
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
19
24
|
i18n (>= 1.6, < 2)
|
20
25
|
minitest (>= 5.1)
|
21
26
|
tzinfo (~> 2.0)
|
22
|
-
appraisal (2.
|
27
|
+
appraisal (2.5.0)
|
23
28
|
bundler
|
24
29
|
rake
|
25
30
|
thor (>= 0.14.0)
|
26
|
-
|
27
|
-
|
28
|
-
|
31
|
+
base64 (0.2.0)
|
32
|
+
benchmark (0.4.0)
|
33
|
+
bigdecimal (3.1.9)
|
34
|
+
concurrent-ruby (1.3.4)
|
35
|
+
diff-lcs (1.6.1)
|
36
|
+
i18n (1.14.7)
|
29
37
|
concurrent-ruby (~> 1.0)
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
rspec-
|
36
|
-
|
37
|
-
rspec-
|
38
|
-
rspec-
|
38
|
+
logger (1.7.0)
|
39
|
+
minitest (5.25.5)
|
40
|
+
mutex_m (0.3.0)
|
41
|
+
rake (13.2.1)
|
42
|
+
rspec (3.13.0)
|
43
|
+
rspec-core (~> 3.13.0)
|
44
|
+
rspec-expectations (~> 3.13.0)
|
45
|
+
rspec-mocks (~> 3.13.0)
|
46
|
+
rspec-core (3.13.3)
|
47
|
+
rspec-support (~> 3.13.0)
|
48
|
+
rspec-expectations (3.13.3)
|
39
49
|
diff-lcs (>= 1.2.0, < 2.0)
|
40
|
-
rspec-support (~> 3.
|
41
|
-
rspec-mocks (3.
|
50
|
+
rspec-support (~> 3.13.0)
|
51
|
+
rspec-mocks (3.13.2)
|
42
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
43
|
-
rspec-support (~> 3.
|
44
|
-
rspec-support (3.
|
45
|
-
thor (1.2
|
46
|
-
tzinfo (2.0.
|
53
|
+
rspec-support (~> 3.13.0)
|
54
|
+
rspec-support (3.13.2)
|
55
|
+
thor (1.3.2)
|
56
|
+
tzinfo (2.0.6)
|
47
57
|
concurrent-ruby (~> 1.0)
|
48
58
|
|
49
59
|
PLATFORMS
|
@@ -53,9 +63,35 @@ DEPENDENCIES
|
|
53
63
|
activerecord (~> 7.0.0)
|
54
64
|
activerecord-nulldb-adapter
|
55
65
|
appraisal
|
66
|
+
concurrent-ruby (= 1.3.4)
|
56
67
|
rake
|
57
68
|
rspec
|
58
69
|
stator!
|
59
70
|
|
71
|
+
CHECKSUMS
|
72
|
+
activemodel (7.0.8.7) sha256=f13b04bb055c1e85b965ce40b0a2e671b8d97835083597bc7fbc04cde0f40a83
|
73
|
+
activerecord (7.0.8.7) sha256=f94fc8510e58a18e462c5ee8862c9be75e2bfad0688e8d022b86a6e05df2a45a
|
74
|
+
activerecord-nulldb-adapter (1.1.1) sha256=034c91106183b954b072fba14c2786adf1a2b9e852ce04f85f823afaf03e9820
|
75
|
+
activesupport (7.0.8.7) sha256=df4702375de924aae81709c831605317c5417f0bd9e502a0373ff84a067204ff
|
76
|
+
appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
|
77
|
+
base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
|
78
|
+
benchmark (0.4.0) sha256=0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
|
79
|
+
bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
|
80
|
+
concurrent-ruby (1.3.4) sha256=d4aa926339b0a86b5b5054a0a8c580163e6f5dcbdfd0f4bb916b1a2570731c32
|
81
|
+
diff-lcs (1.6.1) sha256=12a5a83f3e37a8e2f4427268e305914d5f1879f22b4e73bb1a09f76a3dd86cd4
|
82
|
+
i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
|
83
|
+
logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
|
84
|
+
minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
|
85
|
+
mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
|
86
|
+
rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
|
87
|
+
rspec (3.13.0) sha256=d490914ac1d5a5a64a0e1400c1d54ddd2a501324d703b8cfe83f458337bab993
|
88
|
+
rspec-core (3.13.3) sha256=25136507f4f9cf2e8977a2851e64e438b4331646054e345998714108745cdfe4
|
89
|
+
rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
|
90
|
+
rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
|
91
|
+
rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
|
92
|
+
stator (0.8.0)
|
93
|
+
thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
|
94
|
+
tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
|
95
|
+
|
60
96
|
BUNDLED WITH
|
61
|
-
2.
|
97
|
+
2.6.7
|