stator 0.8.0 → 0.9.0.beta
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 +10 -5
- data/.gitignore +1 -0
- data/.ruby-version +1 -1
- data/Appraisals +12 -15
- data/Gemfile +7 -6
- data/README.md +4 -20
- data/gemfiles/{activerecord_7.2.gemfile → activerecord_5.1.gemfile} +2 -1
- data/gemfiles/activerecord_5.1.gemfile.lock +74 -0
- data/gemfiles/{activerecord_8.0.gemfile → activerecord_5.2.gemfile} +2 -1
- data/gemfiles/activerecord_5.2.gemfile.lock +74 -0
- data/gemfiles/{activerecord_7.1.gemfile → activerecord_5.gemfile} +2 -1
- data/gemfiles/activerecord_5.gemfile.lock +74 -0
- data/gemfiles/activerecord_6.0.gemfile +2 -2
- data/gemfiles/activerecord_6.0.gemfile.lock +41 -69
- data/gemfiles/activerecord_6.1.gemfile +2 -2
- data/gemfiles/activerecord_6.1.gemfile.lock +41 -68
- data/gemfiles/activerecord_7.0.gemfile +2 -2
- data/gemfiles/activerecord_7.0.gemfile.lock +40 -66
- data/lib/stator/alias.rb +51 -30
- data/lib/stator/integration.rb +42 -49
- data/lib/stator/machine.rb +59 -58
- data/lib/stator/model.rb +78 -73
- data/lib/stator/transition.rb +61 -60
- data/lib/stator/version.rb +3 -5
- data/lib/stator.rb +13 -0
- data/spec/model_spec.rb +203 -318
- data/spec/spec_helper.rb +6 -2
- data/spec/support/models.rb +26 -45
- data/spec/support/schema.rb +42 -42
- data/stator.gemspec +3 -10
- metadata +19 -75
- data/.github/CODEOWNERS +0 -1
- data/.github/dependabot.yml +0 -24
- data/gemfiles/activerecord_7.1.gemfile.lock +0 -114
- data/gemfiles/activerecord_7.2.gemfile.lock +0 -113
- data/gemfiles/activerecord_8.0.gemfile.lock +0 -116
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11dfad97bef44bb60c060b086dce2f327f2fca47d309510337533f31f62e105f
|
4
|
+
data.tar.gz: 578888569b569b4e35c7c180ed3ddfe96ea4547f296394c2c81fbc44bee72105
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 959635a8a2eebce12473a7f79844e25de1038fe3a1e692fa97e5d1edc430778a3148a4a7b6ca2e488f248c318a19d74fb69c489c28928ff44731c0e3e8319823
|
7
|
+
data.tar.gz: a13fa8a216bc2fd590d1abea7be2eab258a5e29b58c0017314a083938b5c6f6f0acebf3179b5c4cf7b122dbc2a62ba1342bdc0937fed82365ad2b23d49ce3201
|
data/.github/workflows/build.yml
CHANGED
@@ -3,18 +3,23 @@ on:
|
|
3
3
|
pull_request:
|
4
4
|
push:
|
5
5
|
branches:
|
6
|
-
-
|
6
|
+
- master
|
7
7
|
jobs:
|
8
8
|
build:
|
9
9
|
runs-on: ubuntu-latest
|
10
|
+
continue-on-error: ${{ matrix.experimental }}
|
10
11
|
strategy:
|
11
12
|
fail-fast: false
|
12
13
|
matrix:
|
13
|
-
ruby-version: [
|
14
|
+
ruby-version: [2.7.5, 2.7.6]
|
15
|
+
experimental: [false]
|
16
|
+
include:
|
17
|
+
- ruby-version: 3.0
|
18
|
+
experimental: true
|
19
|
+
- ruby-version: 3.1
|
20
|
+
experimental: true
|
14
21
|
steps:
|
15
|
-
- uses: actions/checkout@
|
16
|
-
with:
|
17
|
-
show-progress: 'false'
|
22
|
+
- uses: actions/checkout@v2
|
18
23
|
- uses: ruby/setup-ruby@v1
|
19
24
|
with:
|
20
25
|
ruby-version: ${{ matrix.ruby-version }}
|
data/.gitignore
CHANGED
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
|
1
|
+
2.7.5
|
data/Appraisals
CHANGED
@@ -1,26 +1,23 @@
|
|
1
|
-
appraise "activerecord-
|
2
|
-
gem "activerecord", "~>
|
3
|
-
gem "concurrent-ruby", "1.3.4"
|
1
|
+
appraise "activerecord-5" do
|
2
|
+
gem "activerecord", "~> 5.0.0"
|
4
3
|
end
|
5
4
|
|
6
|
-
appraise "activerecord-
|
7
|
-
gem "activerecord", "~>
|
8
|
-
gem "concurrent-ruby", "1.3.4"
|
5
|
+
appraise "activerecord-5.1" do
|
6
|
+
gem "activerecord", "~> 5.1.0"
|
9
7
|
end
|
10
8
|
|
11
|
-
appraise "activerecord-
|
12
|
-
gem "activerecord", "~>
|
13
|
-
gem "concurrent-ruby", "1.3.4"
|
9
|
+
appraise "activerecord-5.2" do
|
10
|
+
gem "activerecord", "~> 5.2.0"
|
14
11
|
end
|
15
12
|
|
16
|
-
appraise "activerecord-
|
17
|
-
gem "activerecord", "~>
|
13
|
+
appraise "activerecord-6.0" do
|
14
|
+
gem "activerecord", "~> 6.0.0"
|
18
15
|
end
|
19
16
|
|
20
|
-
appraise "activerecord-
|
21
|
-
gem "activerecord", "~>
|
17
|
+
appraise "activerecord-6.1" do
|
18
|
+
gem "activerecord", "~> 6.1.0"
|
22
19
|
end
|
23
20
|
|
24
|
-
appraise "activerecord-
|
25
|
-
gem "activerecord", "~>
|
21
|
+
appraise "activerecord-7.0" do
|
22
|
+
gem "activerecord", "~> 7.0.0"
|
26
23
|
end
|
data/Gemfile
CHANGED
@@ -1,10 +1,11 @@
|
|
1
1
|
source 'https://rubygems.org'
|
2
2
|
|
3
|
-
|
4
|
-
gemspec
|
3
|
+
gem 'activerecord', '~> 5.2.8'
|
5
4
|
|
6
|
-
|
5
|
+
gemspec
|
7
6
|
|
8
|
-
gem
|
9
|
-
gem
|
10
|
-
gem
|
7
|
+
gem 'appraisal'
|
8
|
+
gem 'debug'
|
9
|
+
gem 'activerecord-nulldb-adapter'
|
10
|
+
gem 'rake'
|
11
|
+
gem 'rspec'
|
data/README.md
CHANGED
@@ -108,6 +108,7 @@ 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
|
+
|
111
112
|
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:
|
112
113
|
|
113
114
|
```ruby
|
@@ -139,6 +140,7 @@ class User < ActiveRecord::Base
|
|
139
140
|
end
|
140
141
|
```
|
141
142
|
|
143
|
+
|
142
144
|
If you need to access the state machine directly, you can do so via the class:
|
143
145
|
|
144
146
|
```ruby
|
@@ -206,25 +208,7 @@ end
|
|
206
208
|
|
207
209
|
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.
|
208
210
|
|
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
|
-
|
227
211
|
#### TODO
|
228
212
|
|
229
|
-
|
230
|
-
|
213
|
+
* Allow for multiple variations of a transition (shift_down style - :third_gear => :second_gear, :second_gear => :first_gear)
|
214
|
+
* Create adapters for different backends (not just ActiveRecord)
|
@@ -0,0 +1,74 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
stator (0.9.0.beta)
|
5
|
+
activerecord
|
6
|
+
activesupport
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activemodel (5.1.7)
|
12
|
+
activesupport (= 5.1.7)
|
13
|
+
activerecord (5.1.7)
|
14
|
+
activemodel (= 5.1.7)
|
15
|
+
activesupport (= 5.1.7)
|
16
|
+
arel (~> 8.0)
|
17
|
+
activerecord-nulldb-adapter (0.4.0)
|
18
|
+
activerecord (>= 2.0.0)
|
19
|
+
activesupport (5.1.7)
|
20
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
|
+
i18n (>= 0.7, < 2)
|
22
|
+
minitest (~> 5.1)
|
23
|
+
tzinfo (~> 1.1)
|
24
|
+
appraisal (2.4.1)
|
25
|
+
bundler
|
26
|
+
rake
|
27
|
+
thor (>= 0.14.0)
|
28
|
+
arel (8.0.0)
|
29
|
+
concurrent-ruby (1.1.10)
|
30
|
+
debug (1.6.1)
|
31
|
+
irb (>= 1.3.6)
|
32
|
+
reline (>= 0.3.1)
|
33
|
+
diff-lcs (1.5.0)
|
34
|
+
i18n (1.12.0)
|
35
|
+
concurrent-ruby (~> 1.0)
|
36
|
+
io-console (0.5.11)
|
37
|
+
irb (1.4.1)
|
38
|
+
reline (>= 0.3.0)
|
39
|
+
minitest (5.16.2)
|
40
|
+
rake (13.0.6)
|
41
|
+
reline (0.3.1)
|
42
|
+
io-console (~> 0.5)
|
43
|
+
rspec (3.11.0)
|
44
|
+
rspec-core (~> 3.11.0)
|
45
|
+
rspec-expectations (~> 3.11.0)
|
46
|
+
rspec-mocks (~> 3.11.0)
|
47
|
+
rspec-core (3.11.0)
|
48
|
+
rspec-support (~> 3.11.0)
|
49
|
+
rspec-expectations (3.11.0)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.11.0)
|
52
|
+
rspec-mocks (3.11.1)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.11.0)
|
55
|
+
rspec-support (3.11.0)
|
56
|
+
thor (1.2.1)
|
57
|
+
thread_safe (0.3.6)
|
58
|
+
tzinfo (1.2.10)
|
59
|
+
thread_safe (~> 0.1)
|
60
|
+
|
61
|
+
PLATFORMS
|
62
|
+
ruby
|
63
|
+
|
64
|
+
DEPENDENCIES
|
65
|
+
activerecord (~> 5.1.0)
|
66
|
+
activerecord-nulldb-adapter
|
67
|
+
appraisal
|
68
|
+
debug
|
69
|
+
rake
|
70
|
+
rspec
|
71
|
+
stator!
|
72
|
+
|
73
|
+
BUNDLED WITH
|
74
|
+
2.3.16
|
@@ -0,0 +1,74 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
stator (0.9.0.beta)
|
5
|
+
activerecord
|
6
|
+
activesupport
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activemodel (5.2.8.1)
|
12
|
+
activesupport (= 5.2.8.1)
|
13
|
+
activerecord (5.2.8.1)
|
14
|
+
activemodel (= 5.2.8.1)
|
15
|
+
activesupport (= 5.2.8.1)
|
16
|
+
arel (>= 9.0)
|
17
|
+
activerecord-nulldb-adapter (0.8.0)
|
18
|
+
activerecord (>= 5.2.0, < 7.1)
|
19
|
+
activesupport (5.2.8.1)
|
20
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
|
+
i18n (>= 0.7, < 2)
|
22
|
+
minitest (~> 5.1)
|
23
|
+
tzinfo (~> 1.1)
|
24
|
+
appraisal (2.4.1)
|
25
|
+
bundler
|
26
|
+
rake
|
27
|
+
thor (>= 0.14.0)
|
28
|
+
arel (9.0.0)
|
29
|
+
concurrent-ruby (1.1.10)
|
30
|
+
debug (1.6.1)
|
31
|
+
irb (>= 1.3.6)
|
32
|
+
reline (>= 0.3.1)
|
33
|
+
diff-lcs (1.5.0)
|
34
|
+
i18n (1.12.0)
|
35
|
+
concurrent-ruby (~> 1.0)
|
36
|
+
io-console (0.5.11)
|
37
|
+
irb (1.4.1)
|
38
|
+
reline (>= 0.3.0)
|
39
|
+
minitest (5.16.2)
|
40
|
+
rake (13.0.6)
|
41
|
+
reline (0.3.1)
|
42
|
+
io-console (~> 0.5)
|
43
|
+
rspec (3.11.0)
|
44
|
+
rspec-core (~> 3.11.0)
|
45
|
+
rspec-expectations (~> 3.11.0)
|
46
|
+
rspec-mocks (~> 3.11.0)
|
47
|
+
rspec-core (3.11.0)
|
48
|
+
rspec-support (~> 3.11.0)
|
49
|
+
rspec-expectations (3.11.0)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.11.0)
|
52
|
+
rspec-mocks (3.11.1)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.11.0)
|
55
|
+
rspec-support (3.11.0)
|
56
|
+
thor (1.2.1)
|
57
|
+
thread_safe (0.3.6)
|
58
|
+
tzinfo (1.2.10)
|
59
|
+
thread_safe (~> 0.1)
|
60
|
+
|
61
|
+
PLATFORMS
|
62
|
+
ruby
|
63
|
+
|
64
|
+
DEPENDENCIES
|
65
|
+
activerecord (~> 5.2.0)
|
66
|
+
activerecord-nulldb-adapter
|
67
|
+
appraisal
|
68
|
+
debug
|
69
|
+
rake
|
70
|
+
rspec
|
71
|
+
stator!
|
72
|
+
|
73
|
+
BUNDLED WITH
|
74
|
+
2.3.16
|
@@ -0,0 +1,74 @@
|
|
1
|
+
PATH
|
2
|
+
remote: ..
|
3
|
+
specs:
|
4
|
+
stator (0.9.0.beta)
|
5
|
+
activerecord
|
6
|
+
activesupport
|
7
|
+
|
8
|
+
GEM
|
9
|
+
remote: https://rubygems.org/
|
10
|
+
specs:
|
11
|
+
activemodel (5.0.7.2)
|
12
|
+
activesupport (= 5.0.7.2)
|
13
|
+
activerecord (5.0.7.2)
|
14
|
+
activemodel (= 5.0.7.2)
|
15
|
+
activesupport (= 5.0.7.2)
|
16
|
+
arel (~> 7.0)
|
17
|
+
activerecord-nulldb-adapter (0.4.0)
|
18
|
+
activerecord (>= 2.0.0)
|
19
|
+
activesupport (5.0.7.2)
|
20
|
+
concurrent-ruby (~> 1.0, >= 1.0.2)
|
21
|
+
i18n (>= 0.7, < 2)
|
22
|
+
minitest (~> 5.1)
|
23
|
+
tzinfo (~> 1.1)
|
24
|
+
appraisal (2.4.1)
|
25
|
+
bundler
|
26
|
+
rake
|
27
|
+
thor (>= 0.14.0)
|
28
|
+
arel (7.1.4)
|
29
|
+
concurrent-ruby (1.1.10)
|
30
|
+
debug (1.6.1)
|
31
|
+
irb (>= 1.3.6)
|
32
|
+
reline (>= 0.3.1)
|
33
|
+
diff-lcs (1.5.0)
|
34
|
+
i18n (1.12.0)
|
35
|
+
concurrent-ruby (~> 1.0)
|
36
|
+
io-console (0.5.11)
|
37
|
+
irb (1.4.1)
|
38
|
+
reline (>= 0.3.0)
|
39
|
+
minitest (5.16.2)
|
40
|
+
rake (13.0.6)
|
41
|
+
reline (0.3.1)
|
42
|
+
io-console (~> 0.5)
|
43
|
+
rspec (3.11.0)
|
44
|
+
rspec-core (~> 3.11.0)
|
45
|
+
rspec-expectations (~> 3.11.0)
|
46
|
+
rspec-mocks (~> 3.11.0)
|
47
|
+
rspec-core (3.11.0)
|
48
|
+
rspec-support (~> 3.11.0)
|
49
|
+
rspec-expectations (3.11.0)
|
50
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
+
rspec-support (~> 3.11.0)
|
52
|
+
rspec-mocks (3.11.1)
|
53
|
+
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
+
rspec-support (~> 3.11.0)
|
55
|
+
rspec-support (3.11.0)
|
56
|
+
thor (1.2.1)
|
57
|
+
thread_safe (0.3.6)
|
58
|
+
tzinfo (1.2.10)
|
59
|
+
thread_safe (~> 0.1)
|
60
|
+
|
61
|
+
PLATFORMS
|
62
|
+
ruby
|
63
|
+
|
64
|
+
DEPENDENCIES
|
65
|
+
activerecord (~> 5.0.0)
|
66
|
+
activerecord-nulldb-adapter
|
67
|
+
appraisal
|
68
|
+
debug
|
69
|
+
rake
|
70
|
+
rspec
|
71
|
+
stator!
|
72
|
+
|
73
|
+
BUNDLED WITH
|
74
|
+
2.3.16
|
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
+
gem "activerecord", "~> 6.0.0"
|
5
6
|
gem "appraisal"
|
7
|
+
gem "debug"
|
6
8
|
gem "activerecord-nulldb-adapter"
|
7
9
|
gem "rake"
|
8
10
|
gem "rspec"
|
9
|
-
gem "activerecord", "~> 6.0.0"
|
10
|
-
gem "concurrent-ruby", "1.3.4"
|
11
11
|
|
12
12
|
gemspec path: "../"
|
@@ -1,63 +1,62 @@
|
|
1
1
|
PATH
|
2
2
|
remote: ..
|
3
3
|
specs:
|
4
|
-
stator (0.
|
5
|
-
activerecord
|
6
|
-
|
7
|
-
benchmark
|
8
|
-
bigdecimal
|
9
|
-
logger
|
10
|
-
mutex_m
|
4
|
+
stator (0.9.0.beta)
|
5
|
+
activerecord
|
6
|
+
activesupport
|
11
7
|
|
12
8
|
GEM
|
13
9
|
remote: https://rubygems.org/
|
14
10
|
specs:
|
15
|
-
activemodel (6.0.
|
16
|
-
activesupport (= 6.0.
|
17
|
-
activerecord (6.0.
|
18
|
-
activemodel (= 6.0.
|
19
|
-
activesupport (= 6.0.
|
20
|
-
activerecord-nulldb-adapter (
|
21
|
-
activerecord (>=
|
22
|
-
activesupport (6.0.
|
11
|
+
activemodel (6.0.5.1)
|
12
|
+
activesupport (= 6.0.5.1)
|
13
|
+
activerecord (6.0.5.1)
|
14
|
+
activemodel (= 6.0.5.1)
|
15
|
+
activesupport (= 6.0.5.1)
|
16
|
+
activerecord-nulldb-adapter (0.8.0)
|
17
|
+
activerecord (>= 5.2.0, < 7.1)
|
18
|
+
activesupport (6.0.5.1)
|
23
19
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
24
20
|
i18n (>= 0.7, < 2)
|
25
21
|
minitest (~> 5.1)
|
26
22
|
tzinfo (~> 1.1)
|
27
23
|
zeitwerk (~> 2.2, >= 2.2.2)
|
28
|
-
appraisal (2.
|
24
|
+
appraisal (2.4.1)
|
29
25
|
bundler
|
30
26
|
rake
|
31
27
|
thor (>= 0.14.0)
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
|
36
|
-
diff-lcs (1.
|
37
|
-
i18n (1.
|
28
|
+
concurrent-ruby (1.1.10)
|
29
|
+
debug (1.6.1)
|
30
|
+
irb (>= 1.3.6)
|
31
|
+
reline (>= 0.3.1)
|
32
|
+
diff-lcs (1.5.0)
|
33
|
+
i18n (1.12.0)
|
38
34
|
concurrent-ruby (~> 1.0)
|
39
|
-
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
rspec-
|
49
|
-
|
35
|
+
io-console (0.5.11)
|
36
|
+
irb (1.4.1)
|
37
|
+
reline (>= 0.3.0)
|
38
|
+
minitest (5.16.2)
|
39
|
+
rake (13.0.6)
|
40
|
+
reline (0.3.1)
|
41
|
+
io-console (~> 0.5)
|
42
|
+
rspec (3.11.0)
|
43
|
+
rspec-core (~> 3.11.0)
|
44
|
+
rspec-expectations (~> 3.11.0)
|
45
|
+
rspec-mocks (~> 3.11.0)
|
46
|
+
rspec-core (3.11.0)
|
47
|
+
rspec-support (~> 3.11.0)
|
48
|
+
rspec-expectations (3.11.0)
|
50
49
|
diff-lcs (>= 1.2.0, < 2.0)
|
51
|
-
rspec-support (~> 3.
|
52
|
-
rspec-mocks (3.
|
50
|
+
rspec-support (~> 3.11.0)
|
51
|
+
rspec-mocks (3.11.1)
|
53
52
|
diff-lcs (>= 1.2.0, < 2.0)
|
54
|
-
rspec-support (~> 3.
|
55
|
-
rspec-support (3.
|
56
|
-
thor (1.
|
53
|
+
rspec-support (~> 3.11.0)
|
54
|
+
rspec-support (3.11.0)
|
55
|
+
thor (1.2.1)
|
57
56
|
thread_safe (0.3.6)
|
58
|
-
tzinfo (1.2.
|
57
|
+
tzinfo (1.2.10)
|
59
58
|
thread_safe (~> 0.1)
|
60
|
-
zeitwerk (2.
|
59
|
+
zeitwerk (2.6.0)
|
61
60
|
|
62
61
|
PLATFORMS
|
63
62
|
ruby
|
@@ -66,37 +65,10 @@ DEPENDENCIES
|
|
66
65
|
activerecord (~> 6.0.0)
|
67
66
|
activerecord-nulldb-adapter
|
68
67
|
appraisal
|
69
|
-
|
68
|
+
debug
|
70
69
|
rake
|
71
70
|
rspec
|
72
71
|
stator!
|
73
72
|
|
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
|
-
|
101
73
|
BUNDLED WITH
|
102
|
-
2.
|
74
|
+
2.3.16
|
@@ -2,11 +2,11 @@
|
|
2
2
|
|
3
3
|
source "https://rubygems.org"
|
4
4
|
|
5
|
+
gem "activerecord", "~> 6.1.0"
|
5
6
|
gem "appraisal"
|
7
|
+
gem "debug"
|
6
8
|
gem "activerecord-nulldb-adapter"
|
7
9
|
gem "rake"
|
8
10
|
gem "rspec"
|
9
|
-
gem "activerecord", "~> 6.1.0"
|
10
|
-
gem "concurrent-ruby", "1.3.4"
|
11
11
|
|
12
12
|
gemspec path: "../"
|