
Security News
CISA’s 2025 SBOM Guidance Adds Hashes, Licenses, Tool Metadata, and Context
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Clockwork deployment scenario for mina. It uses clockworkd
executable to start
clockwork daemon on the server. clockworkd
is the part of the clockwork
.
Important! You will need both clockwork
and daemons
gems available on the server!
# Gemfile
gem "mina-clockwork"
group :production do
gem "daemons" # for `clockworkd`
end
# config/deploy.rb
require "mina/clockwork"
... set configuration options here if you need ...
task deploy: :environment do
deploy do
invoke :"clockwork:stop"
...
on :launch do
...
invoke :"clockwork:start"
end
end
end
Use these options to configure the plugin:
clockwork_dir
- Daemon working dir (Default: current deployment path)clockwork_file
- Clock file (Default: [current deployment path]/clock.rb)clockwork_identifier
- Identifier of the clockworkd
process (Default: name of the clock file)clockwork_pid_dir
- Dir for *.pid
file (Default: [shared path]/tmp/pids)clockwork_log_dir
- Dir for *.log
files (Default: [shared path]/log)Example:
set :clockwork_file, -> { "#{fetch(:current_path)}/my_clock_file.rb" }
mina clockwork:restart # Restart clockwork daemon
mina clockwork:start # Start clockwork daemon
mina clockwork:stop # Stop clockwork daemon
Feel free to contribute!
FAQs
Unknown package
We found that mina-clockwork demonstrated a not healthy version release cadence and project activity because the last version was released 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
CISA’s 2025 draft SBOM guidance adds new fields like hashes, licenses, and tool metadata to make software inventories more actionable.
Security News
A clarification on our recent research investigating 60 malicious Ruby gems.
Security News
ESLint now supports parallel linting with a new --concurrency flag, delivering major speed gains and closing a 10-year-old feature request.