Top "Sinatra" questions

Sinatra is a Domain Specific Language (DSL) for quickly creating web applications in Ruby with minimal effort.

Can't find "rackup" command?

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 rackup
Deploy Sinatra app on Heroku

I have simple Sinatra app. web.rb: require 'sinatra' get '/' do "Hello" end Gemfile:* source :rubygems gem 'sinatra', …

ruby heroku sinatra
Can't launch simple Sinatra app using rackup and jRuby (no response from web server)

I've got a Sinatra "hello world" app that I am trying to run using jRuby. It works when I run …

ruby sinatra jruby rackup
Passenger: internal server error

I installed Apache, Passenger and Sinatra and deployed an app. It gives error when trying to access: An error occurred …

ruby sinatra passenger
What do you use Sinatra for?

Im confused about Sinatra (the ruby framework). Is it a lightweight Rails replacement or you can have them running side …

ruby sinatra
Multiple Sinatra apps using rack-mount

I have a question regarding using rack-mount with Sinatra. I've got two classic-style Sinatra apps. Let's call one App defined …

ruby sinatra
Prepared Statement doesn't exist

Currently running a simple sinatra app, using passenger, and using pgbouncer for connection pooling to a database on the same …

postgresql sinatra pgbouncer
Rails 3 vs Sinatra

For 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 sinatra
How do you choose your HTTP server in Sinatra?

I am running a Sinatra application locally. Ever since I installed Thin, my Sinatra app always uses it as the …

sinatra rack thin webrick mongrel
Rails: How do I require NumberHelper and make it work?

I'm trying to write a simple Sinatra thingy but I need ActionView::Helpers::NumberHelper from action pack. http://api.rubyonrails.…

ruby sinatra actionpack