stepper_motor 0.1.16 → 0.1.17
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/CHANGELOG.md +5 -0
- data/lib/stepper_motor/version.rb +1 -1
- data/rbi/stepper_motor.rbi +1 -1
- data/stepper_motor.gemspec +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae300e62a2208dff5b41284cf55703bd14bf28605a05daa4a86d40d915a42259
|
4
|
+
data.tar.gz: c7d192edf6a455761303ae83647d8e755111cd847c7fb3a1c3ca8d094ed6ca72
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 634c4e138fab066753a07bc4627b898dfb2e41ae082e0eb9722dc8fcdad5941a3009f867ec8e2d520aaeebbb8981d583e24bf05ef6f7b7aa667f1950f810401f
|
7
|
+
data.tar.gz: cea004de19c142606872fae194bf8079a02ccfc5cebe7d59c04f6d2bcba55255b990d5e16778acdc439918af0ae02ddd5162331435a0fb5c504adbbbf019a58e
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,11 @@
|
|
2
2
|
|
3
3
|
## [Unreleased]
|
4
4
|
|
5
|
+
## [0.1.17] - 2025-06-20
|
6
|
+
|
7
|
+
- Mandate Ruby 3.1+ because we are using 3.x syntax and there are shenanigans with sqlite3 gem version and locking. Compatibility with 2.7 can be assured but is too much hassle at the moment.
|
8
|
+
If you need this compatibility, feel free to implement it or contact me for a quote.
|
9
|
+
|
5
10
|
## [0.1.16] - 2025-06-20
|
6
11
|
|
7
12
|
- Add `skip!` flow control method to skip the current (or next) step and move on to the subsequent step, or finish the journey.
|
data/rbi/stepper_motor.rbi
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
# StepperMotor is a module for building multi-step flows where steps are sequential and only
|
3
3
|
# ever progress forward. The building block of StepperMotor is StepperMotor::Journey
|
4
4
|
module StepperMotor
|
5
|
-
VERSION = T.let("0.1.
|
5
|
+
VERSION = T.let("0.1.17", T.untyped)
|
6
6
|
PerformStepJobV2 = T.let(StepperMotor::PerformStepJob, T.untyped)
|
7
7
|
RecoverStuckJourneysJobV1 = T.let(StepperMotor::RecoverStuckJourneysJob, T.untyped)
|
8
8
|
|
data/stepper_motor.gemspec
CHANGED
@@ -12,7 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = "Effortless step workflows that embed nicely inside Rails"
|
13
13
|
spec.description = "Step workflows for Rails/ActiveRecord"
|
14
14
|
spec.homepage = "https://steppermotor.dev"
|
15
|
-
spec.required_ruby_version = ">=
|
15
|
+
spec.required_ruby_version = ">= 3.1.0"
|
16
16
|
|
17
17
|
spec.metadata["allowed_push_host"] = "https://rubygems.org"
|
18
18
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stepper_motor
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.17
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Julik Tarkhanov
|
@@ -337,7 +337,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
337
337
|
requirements:
|
338
338
|
- - ">="
|
339
339
|
- !ruby/object:Gem::Version
|
340
|
-
version:
|
340
|
+
version: 3.1.0
|
341
341
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
342
342
|
requirements:
|
343
343
|
- - ">="
|