Sinatra is a Domain Specific Language (DSL) for quickly creating web applications in Ruby with minimal effort. It is an alternative to other Ruby web application frameworks such as Ruby on Rails, Merb, Nitro, Camping, and Rango.

learn more… | top users | synonyms

117
votes
10answers
14k views

Separate REST JSON API server and client?

I'm about to create a bunch of web apps from scratch. (See http://50pop.com/code for overview.) I'd like for them to be able to be accessed from many different clients: front-end websites, smartphone ...
93
votes
6answers
18k 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 ...
68
votes
12answers
9k 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 ...
58
votes
3answers
7k views

renamed heroku app from website, now it's not found

After renaming my heroku app from the heroku website, whenever I cd to it's directory in a terminal and run any heroku command, I get App not found. Does anybody know of a way to remedy this?
51
votes
6answers
23k 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. . |-- ...
44
votes
5answers
10k 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?
44
votes
7answers
14k views

Cheaper alternatives to New Relic? [closed]

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 ...
39
votes
2answers
13k 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 ...
29
votes
5answers
10k 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, ...
27
votes
2answers
9k 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?
27
votes
1answer
5k 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
27
votes
2answers
13k 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 ...
26
votes
5answers
4k 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.
25
votes
4answers
10k 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.
22
votes
3answers
24k 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 ...
21
votes
5answers
6k 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 ...
21
votes
4answers
12k 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 ...
20
votes
2answers
6k 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 ...
20
votes
4answers
9k 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 ...
19
votes
7answers
16k 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 ...
19
votes
1answer
5k views

What python equivalent of Sinatra would you recommend? [closed]

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 ...
19
votes
4answers
6k 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 do I create a HTTPS route? I have never used HTTPS for my apps ...
19
votes
8answers
6k 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?
17
votes
2answers
2k views

How do I get Sinatra to refrain from adding the X-Frame-Options header?

I am using Sinatra to return some IFRAME contents, and I'd like to allow cross-domain src. Unfortunately, Sinatra is automatically adding an X-Frame-Options header to my response. How do I turn that ...
17
votes
7answers
15k views

Real Life examples of Sinatra applications [closed]

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 ...
17
votes
3answers
15k 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 ...
16
votes
2answers
5k views

Get client's IP address in Sinatra?

This is a really simple question, but I cannot find any mention of this, anywhere.. How do I get the client's IP address from in Sinatra? get '/' do "Your IP address is #{....}" end
16
votes
2answers
6k views

The InstanceMethods module inside ActiveSupport::Concern.. Deprecation Warning

I have a portfolio website built in Sinatra. I haven't worked on it for a while, been doing some Rails. I updated my gem list yesterday by running 'gem update'. I don't know if this has anything to do ...
15
votes
3answers
7k 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 ...
15
votes
4answers
5k 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.
15
votes
1answer
2k views

How to use Pry with Sinatra?

I am writing my first Sinatra application and would like to use Pry to inspect/debug some things going on in the application. I haven't used Pry before either, but I would like to try it out. How ...
14
votes
4answers
5k 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. ...
14
votes
1answer
2k 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 ...
13
votes
4answers
7k views

rendering a partial from a haml file

I have a simple sinatra app that uses haml and sass for the views. One of the views (located in the views folder) is a partial for my navigation menu. I am trying to render it from index.haml but I ...
13
votes
1answer
5k views

Set default content_type for Sinatra

In Sinatra, is it possible to make content_type 'application/json' the default? cause I'm writing an api.
13
votes
1answer
7k views

Ruby / Sinatra - serving up css, javascript, or image files

What is the correct way to route your request through Sinatra so that it serves up the file with no processing? I'm looking for the most common way people do this in the Sinatra framework? I normally ...
12
votes
4answers
3k views

What do you use Sinatra for? [closed]

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 ...
12
votes
5answers
7k 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 ...
12
votes
5answers
5k views

Specifying Content Type in rspec

I'm trying to build an rspec test that sends JSON (or XML) via POST. However, I can't seem to actually get it working: json = {.... data ....}.to_json post ...
12
votes
2answers
3k views

Sinatra - how do I get the server's domain name

I'm trying to get the domain name in my Sinatra app but as a newbie I really am struggling to figure out how to do this, and I know it must be possible! Rack::Request#host_with_port looks promising, ...
12
votes
1answer
10k views

Undefined method `bytesize' for #<Hash>

I'd like to store and update blogger labels to datastore in GAE. When I run that code, I get this error: javax.servlet.ServletContext log: Application Error ...
12
votes
2answers
2k 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 ...
12
votes
3answers
3k 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
11
votes
2answers
6k views

How to setup a Sinatra app under Apache with Passenger?

Let's say I have the simplest single-file Sinatra app. The hello world on their homepage will do. I want to run it under Apache with Phusion Passenger, AKA mod_rails. What directory structure do I ...
11
votes
4answers
3k views

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 in app.rb and the other API defined in api.rb. I would like it so that ...
11
votes
2answers
12k views

How to do a Post/Redirect/Get using Sinatra?

What's Sinatra's equivalent of Rails' redirect_to method? I need to follow a Post/Redirect/Get flow for a form submission whilst preserving the instance variables that are passed to my view. The ...
11
votes
1answer
7k views

How do I do html forms with sinatra?

Is there some utilities available so that I could easily encapsulate form fields passed in requests in an object or do I have to create it myself by parsing fields from params in every request?
11
votes
4answers
4k views

Installing a gem from Github with Bundler

I am trying to use the instructions here to install a pre-released version of a gem with bundler. The "bundle install" output lists the gem as getting installed, but "gem list" fails to find it. My ...
11
votes
4answers
4k 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 ...
11
votes
10answers
13k views

Develop iPhone app without a Mac? [duplicate]

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 ...

1 2 3 4 5 51