
Security News
Astral Launches pyx: A Python-Native Package Registry
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Is a useful tool for running stepped or iterative workflows inside your Rails application.
Define a workflow and launch your user into it:
class SignupJourney < StepperMotor::Journey
step :after_signup do
WelcomeMailer.welcome_email(hero).deliver_later
end
step :remind_of_tasks, wait: 2.days do
ServiceUpdateMailer.two_days_spent_email(hero).deliver_later
end
step :onboarding_complete, wait: 15.days do
OnboardingCompleteMailer.onboarding_complete_email(hero).deliver_later
end
end
SignupJourney.create!(hero: current_user)
Want to know more? Dive into the manual we provide.
Add the gem to the application's Gemfile, and then generate and run the migration
$ bundle add stepper_motor
$ bundle install
$ bin/rails g stepper_motor:install --uuid # Pass "uuid" if you are using UUID for your primary and foreign keys
$ bin/rails db:migrate
For versions 0.1.x stepper_motor is going to undergo active development, with infrequent - but possible - API changes and database schema changes. Here's what it means for you:
bin/rails g stepper_motor:install --skip
to add any migrations you may needStarting with versions 0.2.x and up, stepper_motor will make the best possible effort to allow operation without having applied the recent migrations.
After checking out the repo, run bundle
to install dependencies. The development process from there on is like any other gem.
Bug reports and pull requests are welcome on GitHub at https://github.com/stepper-motor/stepper_motor.
FAQs
Unknown package
We found that stepper_motor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.