
Security News
The Changelog Podcast: Practical Steps to Stay Safe on npm
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.
cachafla-yard-sinatra
Advanced tools
This plugin adds Sinatra routes to YARD output.
YARD::Sinatra is part of the BigBand stack. Check it out if you are looking for fancy Sinatra extensions.
Install via gemcutter:
gem install yard-sinatra
Add comments to your routes (well, that's optional):
require "sinatra/base"
require "user"
class ExampleApp < Sinatra::Base
  # Settings for a given user
  #
  # @param [User] some user
  # @return [Hash] settings for that user
  def settings(some_user)
    raise NotImplementedMethod
  end
  
  # Displays a settings page for the current user
  #
  # @see ExampleApp#settings
  get "/settings" do
    haml :settings, {}, :settings => settings(current_user)
  end
  
  # Error 404 Page Not Found
  not_found do
    haml :'404'
  end
end
The you're ready to go:
yardoc example_app.rb
YARD will automatically detect the yard-sinatra plugin and load it.
As with yard, this can be used for other means besides documentation. For instance, you might want a list of all routes defined in a given list of files without executing those files:
require "yard/sinatra"
YARD::Registry.load Dir.glob("lib/**/*.rb")
YARD::Sinatra.routes.each do |route|
  puts route.http_verb, route.http_path, route.file, route.docstring
end
not_found documentation.FAQs
Unknown package
We found that cachafla-yard-sinatra demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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
Learn the essential steps every developer should take to stay secure on npm and reduce exposure to supply chain attacks.

Security News
Experts push back on new claims about AI-driven ransomware, warning that hype and sponsored research are distorting how the threat is understood.

Security News
Ruby's creator Matz assumes control of RubyGems and Bundler repositories while former maintainers agree to step back and transfer all rights to end the dispute.