Sinatra routes documentation is too short:
options '/' do
.. appease something ..
end
link '/' do
.. affiliate something ..
end
unlink '/' do
.. separate something ..
end
I've been searching for REST docs and HTTP methods. I've found some words for options
here and for link
here (section 19.6.2.4) and the <link> html tag, and an example of link
use in Riak database to emulate a graph db.
But I'm searching for Sinatra use cases and examples. I need to know if I don't need them or if I'm missing something important in these RESTful days before to start a new project.