Tagged Questions
Sinatra is a DSL for quickly creating web applications in Ruby with minimal effort.
52
votes
12answers
5k views
Why is this RMagick call generating a segmentation fault?
I've been banging my head against the wall for the better part of an hour trying to figure out what's going wrong here, and I'm sure (or rather hoping) it's something fairly obvious that I'm ...
23
votes
2answers
4k views
Using Sinatra for larger projects via multiple files
It seems that in Sinatra all route handlers are being written into a single file, if I understand right it acts as a one large/small controller. Is there any way to split it into separate independent ...
22
votes
6answers
2k views
Is there a .NET framework similar to Ruby's Sinatra?
Does anyone know if there is a .NET library/API similar to Ruby's Sinatra?
Just wondering since with the new Routing API in ASP.NET MVC, WCF and .NET 3.5, it seems like a possibility.
22
votes
6answers
4k views
How to get Sinatra to auto-reload the file after each change?
I am using
# my_app.rb
load 'index.rb'
and start the sever like this
ruby my_app.rb
but it never reload any changes I made in index page.
Did I miss anything here?
21
votes
3answers
7k views
Serving static files with Sinatra
I have one page website only using HTML, CSS and JavaScript. I want to deploy the app to Heroku, but I cannot find a way to do it. I am now trying to make the app working with Sinatra.
.
|-- ...
20
votes
2answers
5k views
Sinatra vs. Rails
I've worked through some of the Sinatra and Rails samples, but I'm having a hard time figuring out which features belong to which technology.
What specifically do I gain by using Sinatra/Rails? Is it ...
14
votes
4answers
5k views
Any success with Sinatra working together with EventMachine WebSockets?
I have been using Sinatra for sometime now and I would like to add some realtime features to my web-app by pushing the data via websockets.
I have successfully used the gem 'em-websocket' on its own, ...
14
votes
4answers
6k views
Sinatra + Bundler?
I'm wondering how a one can use Bundler with Sinatra. The idea is to use the gems that Bundler downloads inside the .gems folder.
13
votes
3answers
5k views
What are the main differences between Sinatra and Ramaze?
I'm looking for a lightweight Ruby web framework and have come across Sinatra and Ramaze. Both seem extemely light, concise and simple. But I don't know enough about either to say what the main ...
13
votes
8answers
4k views
Sinatra success stories [closed]
Have you used Sinatra successfully? What kind of a project was it? In what situations would you recommend using Sinatra instead of Rails or Merb?
12
votes
3answers
6k views
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 server to provide user authentication, application-triggered emails, a fairly complex data ...
12
votes
7answers
8k views
How do you debug a Sinatra app like a Rails app?
In my main Sinatra controller, I want to debug the params hash after it is POSTed from a form.
I have added:
puts params.inspect
and
set :logging, :true
The params.inspect works if everything ...
11
votes
4answers
2k views
Streaming data from Sinatra/Rack application
I am trying to stream textual data (XML/JSON) from a Ruby (1.9.1p378) Sinatra (1.0) Rack (1.2.1) application. The suggested solutions (e.g. ...
11
votes
2answers
4k views
What's the best way to talk to a database while using Sinatra?
As I understand it, the Sinatra framework, unlike Rails, does not provide an ORM. In that case, how do you talk to a DB in a Sinatra app? Or is Sinatra only for apps that don't use a DB?
10
votes
4answers
2k views
Decoding Facebook's signed request in Ruby/Sinatra
Due to Facebook deprecating new FBML, I'm looking for a new way to create a "reveal" tab (a page tab that shows one version to fans and another to non-fans). Facebook has added data to the ...
10
votes
2answers
2k views
Sinatra - API - Authentication
We going to develop a little API application in Sinatra. What are the authentication options available to secure the API calls?
Thanks,
Imran
10
votes
10answers
8k views
Develop iPhone app without a Mac? [closed]
Possible Duplicates:
How can I develop for iPhone using a Windows development machine?
I'm looking to build an iPhone app for my wife's phone, but am not interested in buying a Mac as a ...
9
votes
1answer
2k views
What is a very simple authentication scheme for Sinatra/Rack
I am busy porting a very small web app from ASP.NET MVC 2 to Ruby/Sinatra.
In the MVC app, FormsAuthentication.SetAuthCookie was being used to set a persistent cookie when the users login was ...
9
votes
3answers
7k views
Use Rack::CommonLogger in Sinatra
I have a small web-server that I wrote with Sinatra. I want to be able to log messages to a log file. I've read through http://www.sinatrarb.com/api/index.html and www.sinatrarb.com/intro.html, and ...
9
votes
1answer
1k views
Rack::Session:Cookie error using Sinatra, Thin, Rails, and Rack::Cascade
I have a combined Sinatra/Rails app that shares a session using Rack::Session::Cookie. The app works fine when started with Rack::Handler::Thin.run app, but if the rackup file is start with thin ...
9
votes
7answers
6k views
Real Life examples of Sinatra applications
Im getting interested in Sinatra to develop micro web applications.
I'm not sure where to draw the line when choosing between Sinatra and Rails.
Please can you provide some real life examples of ...
9
votes
3answers
11k views
Contact form in ruby, sinatra, and haml
I'm new to all three, and I'm trying to write a simple contact form for a website. The code I have come up with is below, but I know there are some fundamental problems with it (due to my ...
9
votes
3answers
1k views
Having trouble debugging Sinatra app in production
I'm deploying a Sinatra app using passenger. The deployed app is working, but not entirely: some paths work fine, others simply render a blank page. I can't seem to find any major differences between ...
8
votes
4answers
1k views
Is Sinatra multi threaded?
Is Sinatra multi-threaded? I read else where that "sinatra is multi-threaded by default", what does that imply?
Consider this example
get "/multithread" do
t1 = Thread.new{
puts "sleeping for ...
8
votes
2answers
2k views
Cheaper alternatives to New Relic?
I have a fairly substantial Ruby Sinatra app (6 hosts, 5k RPM) and just enabled newrelic to get profiling data. New Relic is massively expensive, however, and I cannot afford to pay it beyond the ...
8
votes
5answers
4k views
Heroku app fails to start - `require': no such file to load — sinatratestapp (LoadError)
I'm trying to get my Heroku app to run using the bamboo-mri-1.9.2 stack. Of course it's running fine locally on Ruby 1.9.2. But when on production it crashes during the startup on executing config.ru ...
8
votes
2answers
2k views
How to make Sinatra work over HTTPS/SSL?
As the title says... Google doesn't give anything useful concerning this.
How do I set up and configure https/ssl for Sinatra apps?
How to create a https route? etc.
I have never used https for my ...
8
votes
4answers
2k views
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 by side?
Can you do a web application (as in Rails)? For example a twitter ...
8
votes
3answers
5k views
Using Sinatra and MongoDB - what's the recommended way to “keep alive” the mongodb connection between http requests?
I've used ASP.NET and now I'm working on a Sinatra/MongoDB app. With ASP.NET architecture, the connection to the database a given request uses comes from a pool of connections that the ADO.NET ...
7
votes
2answers
161 views
What are good reasons to write a web application in Sinatra over Rails, particularly for someone who's spent a lot of time learning Rails? [closed]
What are good reasons to write a web application in Sinatra over Rails, particularly for someone who's spent a lot of time learning Rails?
I've been doing Rails for 2 years and I do like Rails. But ...
7
votes
1answer
2k views
Thin EventMachine Sinatra vs. Rails
I have been looking into the possibility of backgrounding some jobs with EventMachine. In Sinatra this appears to work great but Rails 3 appears to execute all ticks before rendering a view.
When I ...
7
votes
4answers
2k views
Devise with Sinatra
Does anyone had installed Devise gem with Sinatra?
Devise is based on Warden and so it should work on Sinatra, I couldn't find any related info about how to implement it.
7
votes
1answer
1k views
Simple Ruby Input Validation Library
I've been looking all over the place for a simple input validation library for Ruby. Everything seems to point towards ActiveRecord (or similar). I'm not using Rails, I'm using Sinatra without an ORM. ...
7
votes
3answers
2k views
Capistrano asks for password when deploying, despite SSH keys
My ssh keys are definitely set up correctly, as I'm never prompted for the password when using ssh. But capistrano still asks for a password when deploying with cap deploy. It doesn't ask for the ...
7
votes
3answers
4k views
In Sinatra, how can I serve static index.html files in subdirectories in public folder?
I noticed that Sinatra does not recognize index.html files in public folder's subdirectories and returns an error when url is pointing to a directory without specifiying the file name.
For example, ...
7
votes
3answers
2k views
Why is my sinatra website so slow?
After asking this question, I started using Sinatra as a way to serve web pages.
This evening, a friend of mine and I started to test the speed of the server.
The file to log in looks like:
require ...
7
votes
1answer
648 views
Sinatra Sub-Directory Views
I want to be able to get Sinatra views from sub-directories of ./views (such as ./views/admin). I know you can set the views like so:
set :views, Proc.new { File.join(root, "templates") }
But how ...
7
votes
1answer
3k views
Sinatra / Ruby Server Push
What is the best way to push data from a server written in Sinatra (ruby) to a client? Think similar to a chat room, but without ajax polling every 2500ms. I know of Juggernaut in rails, but was ...
7
votes
1answer
1k views
What's the difference between Rack and Passenger?
I'm trying to deploy a Sinatra app to Dreamhost and it says the following:
Since DH supports Passenger, which in
turn supports Rack-based ruby
applications, DH does indeed support
Sinatra.
...
6
votes
0answers
142 views
Avoiding redundant Bundler dependency declarations for Rack
Imagine a Rack application that, on startup, creates instances of some other Ruby applications and maps routes to those applications. This application has a Rack dependency of 1.2.2.
Now imagine ...
6
votes
3answers
697 views
Mount Sinatra app inside a rails app and sharing layout
I would like to mount a sinatra application in my rails app.
But I would like this one to share the same layout.
The iframe could work but do you have any other idea ?
Thanks
6
votes
2answers
2k views
Logging in Sinatra
I'm having trouble figuring out how to log messages with Sinatra. I'm not looking to log requests, but rather custom messages at certain points in my app. For example, when fetching a URL I would like ...
6
votes
3answers
446 views
what is a controller in sinatra?
I was asked why I am creating complex Ruby variables in my view.
Shouldn't this variable have been declared by my controller?
Is my sinatra controller my .rb file? I have one .rb file and view views.
...
6
votes
1answer
654 views
HTML5 Server-Sent Events with Ruby Sinatra
I'm new to Ruby and Sinatra, I'm trying to setup a simple HTML5 Server-Sent Event with it, The code below works fine in Chrome developer builds but fails in Non Developer Builds and Safari on both ...
6
votes
2answers
297 views
What's the best way to profile a Sinatra application?
I'm trying to figure out what the best way to profile a Sinatra app is. I'd like a solution that would give me a time profile of all methods within a path, including the rendering of the haml.
Has ...
6
votes
1answer
2k views
What python equivalent of Sinatra would you recommend?
I like the sinatra framework, but might have to work in python. A quick web search has uncovered a few python equivalents including itty, flask and juno.
I'd like to know people's experience of ...
6
votes
2answers
635 views
What is the limit of Sinatra?
I've been learning the Ruby web framework Sinatra lately, and I'm finding it great to use. Most of the articles and blogs I have read about it seem to assume that it is good only for small websites, ...
6
votes
2answers
1k views
How to enable SSL for a standalone Sinatra app?
I want to write a quick server app in Sinatra. It has to be self-contained (i.e. not use apache/nginx/passenger) but also has to support SSL.
Is there an easy way to enable SSL support for Sinatra ...
6
votes
4answers
3k views
Reloading Sinatra app on every request on Windows
I've set up Rack::Reload according to this thread
# config.ru
require 'rubygems'
require 'sinatra'
set :environment, :development
require 'app'
run Sinatra::Application
# app.rb
class ...
6
votes
1answer
2k views
What's the fastest way for a true sinatra(ruby/rack) after_filter?
Okay it's a simple task. After I render html to the client I want to execute a db call with information from the request.
I am using sinatra because it's a lightweight microframework, but really i ...