stator 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bd6df35f26ca3ad5d575a7ca144abf6bd17ab7eb24b5ada82fb46e499998ce99
4
- data.tar.gz: 5e67fc30ac3a46248afee90f68781afb1628a8145ec6da935573a1ee4e29d573
3
+ metadata.gz: 3a5f5716fec773ccafe1308d20a5db86c1efc0ba71467cbc82c208e97782ad07
4
+ data.tar.gz: '09a4cb4b225d8897ec737da39be2c571e59ad005fd3a771a7afa7f19b56f8ac6'
5
5
  SHA512:
6
- metadata.gz: d1d45f5f4797c75bc8b124041cab91b0e85bec9e936ec76fdfc15b53a5f3c88db2cd733546f20f50fdf2ec3edb7f5b3cffeb93996053afc0a2784de6fd9d17e5
7
- data.tar.gz: 779f3a8c8b04b04acb5abdf84722a7418a0c5a8c35f859d02d8c35419ac6398bd5b64b9a80cadf329f4ae9fde4f666664da2075d500187ea1ba144557c240f47
6
+ metadata.gz: 52e7539f9a6933b0c9badbd8dd276be7cc8518a4bd3f62b98d5095ee5c92aff165fba2e9dd6614c80f93251ba599750dfd7ba1e12f445e3b2339effe46d17d02
7
+ data.tar.gz: 1a338be123d40ef09c21a1e986a768e9156de07ea02b911439dd9ce5887d5db528b266d01e1812be610f06d1d0fc8b495d659f5e0d3dd61ae72247a99fec46b0
@@ -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] "
@@ -0,0 +1,23 @@
1
+ name: build
2
+ on:
3
+ pull_request:
4
+ push:
5
+ branches:
6
+ - main
7
+ jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ fail-fast: false
12
+ matrix:
13
+ ruby-version: [3.2, 3.3, 3.4]
14
+ steps:
15
+ - uses: actions/checkout@v4
16
+ with:
17
+ show-progress: 'false'
18
+ - uses: ruby/setup-ruby@v1
19
+ with:
20
+ ruby-version: ${{ matrix.ruby-version }}
21
+ bundler-cache: true # runs `bundle install` and caches installed gems automatically
22
+ - run: bundle exec appraisal install
23
+ - run: bundle exec appraisal rspec
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.5.1
1
+ 3.4.2
data/Appraisals ADDED
@@ -0,0 +1,26 @@
1
+ appraise "activerecord-6.0" do
2
+ gem "activerecord", "~> 6.0.0"
3
+ gem "concurrent-ruby", "1.3.4"
4
+ end
5
+
6
+ appraise "activerecord-6.1" do
7
+ gem "activerecord", "~> 6.1.0"
8
+ gem "concurrent-ruby", "1.3.4"
9
+ end
10
+
11
+ appraise "activerecord-7.0" do
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"
26
+ end
data/Gemfile CHANGED
@@ -1,10 +1,10 @@
1
1
  source 'https://rubygems.org'
2
2
 
3
3
  # Specify your gem's dependencies in stator.gemspec
4
- gem 'activerecord', '5.2.3'
5
-
6
4
  gemspec
7
5
 
8
- gem 'activerecord-nulldb-adapter', '~> 0.4.0', require: false
9
- gem 'rake'
10
- gem 'rspec'
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
- * 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)
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)
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord-nulldb-adapter"
7
+ gem "rake"
8
+ gem "rspec"
9
+ gem "activerecord", "~> 6.0.0"
10
+ gem "concurrent-ruby", "1.3.4"
11
+
12
+ gemspec path: "../"
@@ -0,0 +1,102 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stator (0.8.0)
5
+ activerecord (>= 6.0)
6
+ base64
7
+ benchmark
8
+ bigdecimal
9
+ logger
10
+ mutex_m
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
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)
23
+ concurrent-ruby (~> 1.0, >= 1.0.2)
24
+ i18n (>= 0.7, < 2)
25
+ minitest (~> 5.1)
26
+ tzinfo (~> 1.1)
27
+ zeitwerk (~> 2.2, >= 2.2.2)
28
+ appraisal (2.5.0)
29
+ bundler
30
+ rake
31
+ thor (>= 0.14.0)
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)
38
+ concurrent-ruby (~> 1.0)
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)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.13.0)
52
+ rspec-mocks (3.13.2)
53
+ diff-lcs (>= 1.2.0, < 2.0)
54
+ rspec-support (~> 3.13.0)
55
+ rspec-support (3.13.2)
56
+ thor (1.3.2)
57
+ thread_safe (0.3.6)
58
+ tzinfo (1.2.11)
59
+ thread_safe (~> 0.1)
60
+ zeitwerk (2.7.2)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ activerecord (~> 6.0.0)
67
+ activerecord-nulldb-adapter
68
+ appraisal
69
+ concurrent-ruby (= 1.3.4)
70
+ rake
71
+ rspec
72
+ stator!
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
+
101
+ BUNDLED WITH
102
+ 2.6.7
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord-nulldb-adapter"
7
+ gem "rake"
8
+ gem "rspec"
9
+ gem "activerecord", "~> 6.1.0"
10
+ gem "concurrent-ruby", "1.3.4"
11
+
12
+ gemspec path: "../"
@@ -0,0 +1,100 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stator (0.8.0)
5
+ activerecord (>= 6.0)
6
+ base64
7
+ benchmark
8
+ bigdecimal
9
+ logger
10
+ mutex_m
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
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)
23
+ concurrent-ruby (~> 1.0, >= 1.0.2)
24
+ i18n (>= 1.6, < 2)
25
+ minitest (>= 5.1)
26
+ tzinfo (~> 2.0)
27
+ zeitwerk (~> 2.3)
28
+ appraisal (2.5.0)
29
+ bundler
30
+ rake
31
+ thor (>= 0.14.0)
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)
38
+ concurrent-ruby (~> 1.0)
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)
50
+ diff-lcs (>= 1.2.0, < 2.0)
51
+ rspec-support (~> 3.13.0)
52
+ rspec-mocks (3.13.2)
53
+ diff-lcs (>= 1.2.0, < 2.0)
54
+ rspec-support (~> 3.13.0)
55
+ rspec-support (3.13.2)
56
+ thor (1.3.2)
57
+ tzinfo (2.0.6)
58
+ concurrent-ruby (~> 1.0)
59
+ zeitwerk (2.7.2)
60
+
61
+ PLATFORMS
62
+ ruby
63
+
64
+ DEPENDENCIES
65
+ activerecord (~> 6.1.0)
66
+ activerecord-nulldb-adapter
67
+ appraisal
68
+ concurrent-ruby (= 1.3.4)
69
+ rake
70
+ rspec
71
+ stator!
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
+
99
+ BUNDLED WITH
100
+ 2.6.7
@@ -0,0 +1,12 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord-nulldb-adapter"
7
+ gem "rake"
8
+ gem "rspec"
9
+ gem "activerecord", "~> 7.0.0"
10
+ gem "concurrent-ruby", "1.3.4"
11
+
12
+ gemspec path: "../"
@@ -0,0 +1,97 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stator (0.8.0)
5
+ activerecord (>= 6.0)
6
+ base64
7
+ benchmark
8
+ bigdecimal
9
+ logger
10
+ mutex_m
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
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)
23
+ concurrent-ruby (~> 1.0, >= 1.0.2)
24
+ i18n (>= 1.6, < 2)
25
+ minitest (>= 5.1)
26
+ tzinfo (~> 2.0)
27
+ appraisal (2.5.0)
28
+ bundler
29
+ rake
30
+ thor (>= 0.14.0)
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)
37
+ concurrent-ruby (~> 1.0)
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)
49
+ diff-lcs (>= 1.2.0, < 2.0)
50
+ rspec-support (~> 3.13.0)
51
+ rspec-mocks (3.13.2)
52
+ diff-lcs (>= 1.2.0, < 2.0)
53
+ rspec-support (~> 3.13.0)
54
+ rspec-support (3.13.2)
55
+ thor (1.3.2)
56
+ tzinfo (2.0.6)
57
+ concurrent-ruby (~> 1.0)
58
+
59
+ PLATFORMS
60
+ ruby
61
+
62
+ DEPENDENCIES
63
+ activerecord (~> 7.0.0)
64
+ activerecord-nulldb-adapter
65
+ appraisal
66
+ concurrent-ruby (= 1.3.4)
67
+ rake
68
+ rspec
69
+ stator!
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
+
96
+ BUNDLED WITH
97
+ 2.6.7
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord-nulldb-adapter"
7
+ gem "rake"
8
+ gem "rspec"
9
+ gem "activerecord", "~> 7.1.0"
10
+
11
+ gemspec path: "../"
@@ -0,0 +1,114 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ stator (0.8.0)
5
+ activerecord (>= 6.0)
6
+ base64
7
+ benchmark
8
+ bigdecimal
9
+ logger
10
+ mutex_m
11
+
12
+ GEM
13
+ remote: https://rubygems.org/
14
+ specs:
15
+ activemodel (7.1.5.1)
16
+ activesupport (= 7.1.5.1)
17
+ activerecord (7.1.5.1)
18
+ activemodel (= 7.1.5.1)
19
+ activesupport (= 7.1.5.1)
20
+ timeout (>= 0.4.0)
21
+ activerecord-nulldb-adapter (1.1.1)
22
+ activerecord (>= 6.0, < 8.1)
23
+ activesupport (7.1.5.1)
24
+ base64
25
+ benchmark (>= 0.3)
26
+ bigdecimal
27
+ concurrent-ruby (~> 1.0, >= 1.0.2)
28
+ connection_pool (>= 2.2.5)
29
+ drb
30
+ i18n (>= 1.6, < 2)
31
+ logger (>= 1.4.2)
32
+ minitest (>= 5.1)
33
+ mutex_m
34
+ securerandom (>= 0.3)
35
+ tzinfo (~> 2.0)
36
+ appraisal (2.5.0)
37
+ bundler
38
+ rake
39
+ thor (>= 0.14.0)
40
+ base64 (0.2.0)
41
+ benchmark (0.4.0)
42
+ bigdecimal (3.1.9)
43
+ concurrent-ruby (1.3.5)
44
+ connection_pool (2.5.0)
45
+ diff-lcs (1.6.1)
46
+ drb (2.2.1)
47
+ i18n (1.14.7)
48
+ concurrent-ruby (~> 1.0)
49
+ logger (1.7.0)
50
+ minitest (5.25.5)
51
+ mutex_m (0.3.0)
52
+ rake (13.2.1)
53
+ rspec (3.13.0)
54
+ rspec-core (~> 3.13.0)
55
+ rspec-expectations (~> 3.13.0)
56
+ rspec-mocks (~> 3.13.0)
57
+ rspec-core (3.13.3)
58
+ rspec-support (~> 3.13.0)
59
+ rspec-expectations (3.13.3)
60
+ diff-lcs (>= 1.2.0, < 2.0)
61
+ rspec-support (~> 3.13.0)
62
+ rspec-mocks (3.13.2)
63
+ diff-lcs (>= 1.2.0, < 2.0)
64
+ rspec-support (~> 3.13.0)
65
+ rspec-support (3.13.2)
66
+ securerandom (0.4.1)
67
+ thor (1.3.2)
68
+ timeout (0.4.3)
69
+ tzinfo (2.0.6)
70
+ concurrent-ruby (~> 1.0)
71
+
72
+ PLATFORMS
73
+ arm64-darwin
74
+ ruby
75
+
76
+ DEPENDENCIES
77
+ activerecord (~> 7.1.0)
78
+ activerecord-nulldb-adapter
79
+ appraisal
80
+ rake
81
+ rspec
82
+ stator!
83
+
84
+ CHECKSUMS
85
+ activemodel (7.1.5.1) sha256=74727466854a7fbdfe8f2702ca3112b23877500d4926bf7e02e921ad542191f1
86
+ activerecord (7.1.5.1) sha256=f40ad1609bf33b9ba5bdc4e16d80a77b1517153234ceb413d31d635d7b91f1e3
87
+ activerecord-nulldb-adapter (1.1.1) sha256=034c91106183b954b072fba14c2786adf1a2b9e852ce04f85f823afaf03e9820
88
+ activesupport (7.1.5.1) sha256=9f0c482e473b9868cb3dfe3e9db549a3bd2302c02e4f595a5caac144a8c7cfb8
89
+ appraisal (2.5.0) sha256=36989221be127913b0dba8d114da2001e6b2dceea7bd4951200eaba764eed3ce
90
+ base64 (0.2.0) sha256=0f25e9b21a02a0cc0cea8ef92b2041035d39350946e8789c562b2d1a3da01507
91
+ benchmark (0.4.0) sha256=0f12f8c495545e3710c3e4f0480f63f06b4c842cc94cec7f33a956f5180e874a
92
+ bigdecimal (3.1.9) sha256=2ffc742031521ad69c2dfc815a98e426a230a3d22aeac1995826a75dabfad8cc
93
+ concurrent-ruby (1.3.5) sha256=813b3e37aca6df2a21a3b9f1d497f8cbab24a2b94cab325bffe65ee0f6cbebc6
94
+ connection_pool (2.5.0) sha256=233b92f8d38e038c1349ccea65dd3772727d669d6d2e71f9897c8bf5cd53ebfc
95
+ diff-lcs (1.6.1) sha256=12a5a83f3e37a8e2f4427268e305914d5f1879f22b4e73bb1a09f76a3dd86cd4
96
+ drb (2.2.1) sha256=e9d472bf785f558b96b25358bae115646da0dbfd45107ad858b0bc0d935cb340
97
+ i18n (1.14.7) sha256=ceba573f8138ff2c0915427f1fc5bdf4aa3ab8ae88c8ce255eb3ecf0a11a5d0f
98
+ logger (1.7.0) sha256=196edec7cc44b66cfb40f9755ce11b392f21f7967696af15d274dde7edff0203
99
+ minitest (5.25.5) sha256=391b6c6cb43a4802bfb7c93af1ebe2ac66a210293f4a3fb7db36f2fc7dc2c756
100
+ mutex_m (0.3.0) sha256=cfcb04ac16b69c4813777022fdceda24e9f798e48092a2b817eb4c0a782b0751
101
+ rake (13.2.1) sha256=46cb38dae65d7d74b6020a4ac9d48afed8eb8149c040eccf0523bec91907059d
102
+ rspec (3.13.0) sha256=d490914ac1d5a5a64a0e1400c1d54ddd2a501324d703b8cfe83f458337bab993
103
+ rspec-core (3.13.3) sha256=25136507f4f9cf2e8977a2851e64e438b4331646054e345998714108745cdfe4
104
+ rspec-expectations (3.13.3) sha256=0e6b5af59b900147698ea0ff80456c4f2e69cac4394fbd392fbd1ca561f66c58
105
+ rspec-mocks (3.13.2) sha256=2327335def0e1665325a9b617e3af9ae20272741d80ac550336309a7c59abdef
106
+ rspec-support (3.13.2) sha256=cea3a2463fd9b84b9dcc9685efd80ea701aa8f7b3decb3b3ce795ed67737dbec
107
+ securerandom (0.4.1) sha256=cc5193d414a4341b6e225f0cb4446aceca8e50d5e1888743fac16987638ea0b1
108
+ stator (0.8.0)
109
+ thor (1.3.2) sha256=eef0293b9e24158ccad7ab383ae83534b7ad4ed99c09f96f1a6b036550abbeda
110
+ timeout (0.4.3) sha256=9509f079b2b55fe4236d79633bd75e34c1c1e7e3fb4b56cb5fda61f80a0fe30e
111
+ tzinfo (2.0.6) sha256=8daf828cc77bcf7d63b0e3bdb6caa47e2272dcfaf4fbfe46f8c3a9df087a829b
112
+
113
+ BUNDLED WITH
114
+ 2.6.7
@@ -0,0 +1,11 @@
1
+ # This file was generated by Appraisal
2
+
3
+ source "https://rubygems.org"
4
+
5
+ gem "appraisal"
6
+ gem "activerecord-nulldb-adapter"
7
+ gem "rake"
8
+ gem "rspec"
9
+ gem "activerecord", "~> 7.2.0"
10
+
11
+ gemspec path: "../"