/usr/share/doc/ruby-yard-sinatra/README.md is in ruby-yard-sinatra 1.0.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | YARD::Sinatra
=============
This plugin adds [Sinatra](http://sinatrarb.com) routes to [YARD](http://yardoc.org/) output.
Usage
-----
Install via rubygems:
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.
Other use cases
---------------
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
Thanks
------
* Ryan Sobol for implementing `not_found` documentation.
* Loren Segal for making it seamlessly work as YARD plugin.
Well, and for YARD.
|