Sinatra is a Domain Specific Language (DSL) for quickly creating web applications in Ruby with minimal effort.
http://titusd.co.uk/2010/04/07/a-beginners-sinatra-tutorial I was trying to run rackup config.ru from the command line as instructed in …
ruby sinatra rackupI have simple Sinatra app. web.rb: require 'sinatra' get '/' do "Hello" end Gemfile:* source :rubygems gem 'sinatra', …
ruby heroku sinatraI installed Apache, Passenger and Sinatra and deployed an app. It gives error when trying to access: An error occurred …
ruby sinatra passengerIm confused about Sinatra (the ruby framework). Is it a lightweight Rails replacement or you can have them running side …
ruby sinatraI have a question regarding using rack-mount with Sinatra. I've got two classic-style Sinatra apps. Let's call one App defined …
ruby sinatraCurrently running a simple sinatra app, using passenger, and using pgbouncer for connection pooling to a database on the same …
postgresql sinatra pgbouncerFor my next web application, I'm debating whether to use Rails 3.x or Sinatra. I would like to use the …
ruby-on-rails json sinatraI'm trying to write a simple Sinatra thingy but I need ActionView::Helpers::NumberHelper from action pack. http://api.rubyonrails.…
ruby sinatra actionpack