Sinatra is a Domain Specific Language (DSL) for quickly creating web applications in Ruby with minimal effort.
I'm using Sinatra with Apache and Phusion-Passenger with "classic" style: # config.ru require 'sinatra' configure do .... end require './app' …
ruby configuration sinatra passengerI need the Sinatra route to behave in the following manner: GET /list/20/10 # Get 20 items with offset 10 GET /list/20 # Get 20 …
ruby sinatra padrinoI would like to mount a sinatra application in my rails app. But I would like this one to share …
ruby-on-rails ruby-on-rails-3 sinatra rackI am working on an application in the Mobile/VOIP domain. This is really a gray area for me. Here …
ruby-on-rails ruby comparison sinatra padrinoHave you used Sinatra successfully? What kind of a project was it? In what situations would you recommend using Sinatra …
ruby sinatra web-frameworksSay I have: require 'sinatra' get '/' { "hi" } get '/a' { "a" } get '/b' { "b" } Is there any …
routes sinatra