
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Add this line to your application's Gemfile:
gem 'sinatra_cyclist'
And then execute:
$ bundle
Or install it yourself as:
$ gem install sinatra_cyclist
Installation into your code depends on how you are using Sinatra.
If you are using dashing update your config.ru
to look something like:
require "sinatra/cyclist"
require 'dashing'
configure do
set :auth_token, 'YOUR_AUTH_TOKEN'
helpers do
def protected!
# Put any authentication code you want in here.
# This method is run before accessing any resource.
end
end
end
map Sinatra::Application.assets_prefix do
run Sinatra::Application.sprockets
end
set :routes_to_cycle_through, [:dashboard_1, :dashboard_2]
run Sinatra::Application
Require sinatra_cyclist
before dashing
otherwise you will see this error:
No such file or directory - sample/dashboards/_cycle.erb
Set the routes_to_cycle_through
before running the application.
Require the gem and specify the routes you want to cycle through.
require "sinatra"
require "sinatra/cyclist"
set :routes_to_cycle_through, [:page_1, :page_2]
get "/page_1" do
"Page 1"
end
get "/page_2" do
"Page 2"
end
Require the gem, explicitly register the extension, and specify the routes.
require "sinatra/base"
require "sinatra/cyclist"
class MyApp < Sinatra::Base
register Sinatra::Cyclist
set :routes_to_cycle_through, [:page_1, :page_2]
get "/page_1" do
"Page 1"
end
get "/page_2" do
"Page 2"
end
end
Now visit /_cycle
to start cycling!
You can also specify a duration (in seconds) in the params to the cycle action
http://sinatra_app.com/_cycle?duration=10
git checkout -b my-new-feature
)git commit -am 'Added some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that sinatra_cyclist 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
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.