Tagged Questions

http://www.sinatrarb.com/

learn more… | top users | synonyms

35
votes
4answers
7k 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 ...
13
votes
4answers
3k 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. ...
60
votes
12answers
6k 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 ...
10
votes
10answers
10k 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 ...
2
votes
2answers
1k views

stream multiple body using async sinatra

I would like start a long poll request from javascript which is fine and i expect my ruby prog to stream multiple body sections to the javascript. Why doesn the following (pseudo)code work? require ...
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 ...
14
votes
4answers
7k 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, ...
9
votes
4answers
3k 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 ...
5
votes
3answers
1k views

Sinatra OPTIONS HTTP Verb

Does Sinatra support the OPTIONS HTTP verb? Something like: options '/' do response.headers["Access-Control-Allow-Origin"] = "*" response.headers["Access-Control-Allow-Methods"] = "POST" halt ...
2
votes
2answers
785 views

Thoughts on using express.js instead of Ruby on Sinatra?

I'm working on a social app and considering using express.js/nodejs instead of my original choice, Sinatra/Ruby. I'm mostly worried about the # of open source projects available in Ruby to help get ...
0
votes
1answer
248 views

Converting to modular sinatra app breaks tests

I've modularised by classic sinatra app and moved my routes in my sinatra app into individual routes files as per http://stackoverflow.com/a/5030173/111884, however, I can't seem to get my tests ...
14
votes
2answers
5k 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
5answers
5k 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?
22
votes
5answers
3k 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.
16
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?
5
votes
4answers
1k views

Sinatra style web framework for Erlang

I programmed in Ruby and Rails for quite a long time, and then I fell in love with the simplicity of the Sinatra framework which allowed me to build one page web applications. Is there a web framework ...
8
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. ...
24
votes
4answers
10k 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. . |-- ...
9
votes
5answers
5k 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 ...
2
votes
2answers
947 views

Sinatra app as Rails 3 subpath

I'm trying to get a sinatra app as a subpath in my rails 3 app. Specifically, the resque queuing system has a sinatra based web interface that I would like to have accessible through /resque on my ...
12
votes
3answers
4k 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 ...
10
votes
2answers
824 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?
7
votes
1answer
1k 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 ...
5
votes
3answers
1k views

Creating a single page proxy using Ruby Sinatra

I am trying to use Ruby Sinatra to create a simple proxy for a specific web page. I can do it in C#, I just can't seem to work it out for Sinatra, the C# code is below: <%@ WebHandler ...
6
votes
1answer
896 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 ...
4
votes
2answers
459 views

Calling Sinatra from within Sinatra

I have a Sinatra based REST service app and I would like to call one of the resources from within one of the routes, effectively composing one resource from another. E.g. get '/someresource' do ...
2
votes
2answers
725 views

Is it possble include Nesta CMS into Rails3 application?

I'd like "to mount" a Nesta CMS app onto a Rails3 app This should be possible couse of being Nesta a Sinatra app, which should be a Rack mountable layer, ... but how would you do it ? Where will you ...
2
votes
1answer
3k views

ruby 1.9 + sinatra incompatible character encodings: ASCII-8BIT and UTF-8

I'm trying to migrate a sinatra application to ruby 1.9 I'm using sinatra 1.0, rack 1.2.0 and erb templates when I start sinatra it works but when I request the web page from the browser I get this ...
2
votes
1answer
3k views

File upload with Sinatra

I am trying to be able to upload files with Sinatra. I have the code here, but I'm getting the error "method file_hash does not exist" (see /lib/mvc/helpers/helpers.rb). What is going on here? Is ...
0
votes
1answer
789 views

Sinatra Warden with existing Ruby on Rails application that uses Devise

I am trying to split my current Ruby on Rails 3 web-application and it's web-services (API). My web-application is running on Heroku and implements API as a namespaced route within my application. For ...
6
votes
4answers
2k views

Deploy Gollum wiki to Heroku

Gollum is "A simple, Git-powered wiki with a sweet API and local frontend." It's hosted on GitHub: http://github.com/github/gollum It seems to be a simple Sinatra app, and as such, it seems like it ...
5
votes
4answers
1k views

Sinatra static assets are not found when using rackup

I have a simple Sinatra app that is configured using the modular style. When I start the app using rackup -p 4567 as recommended in the readme file, the static assets in the public folder are not ...
4
votes
2answers
346 views

Should I be using Rails or Ruby for this website application? How?

I'm very new to web programming (or actually, very old to it, since the last time I messed with the web was HTML 1.1), but now need to deploy a web application quickly. It seems like every time I ...
2
votes
1answer
869 views

Why does code need to be reloaded in Rails 3?

I am a former PHP developer learning Rails and Sinatra. In PHP, every page request loaded all of the required files. If I changed some code and refreshed the page, I could be sure that the code was ...
2
votes
2answers
534 views

how to inject into sintra/haml?

I coded small web app that runs ant (batch file). The processing time of the batch file could take up to minutes. index.haml list all available ant files and run.haml runs them. The flow how it works ...
2
votes
3answers
713 views

What ORM to use in one process multiple db connections sinatra application?

Checked ActiveRecord, DataMapper, Sequel: some use globals (static variables) some require open db connection before loading source file with models. What ORM is better to use in sinatra application ...
2
votes
4answers
3k views

Deploying Sinatra app on Dreamhost/Passenger with custom gems

I've got a Sinatra app that I'm trying to run on Dreamhost that makes use of pony to send email. In order to get the application up and running at the very beginning (before adding pony), I had to gem ...
1
vote
2answers
455 views

Having difficulty accessing validation errors in Sinatra

I have a very basic form, with some very basic validations (though I need to create a custom validation later... you'll probably see a question on that tomorrow. =P ), but I'm having trouble showing ...
1
vote
2answers
700 views

Why am I getting 404 errors with Sinatra with Passenger under nginx?

I have a Sinatra-based app that runs fine locally. I moved it to a nginx-based server with Passenger and now all my links to files in my apps /public are returning 404 errors. The primary app runs, ...
0
votes
7answers
163 views

In a Ruby each block, how do I do something to the last record in the array within the block?

Say I have a block like this: <% @help_sections.each do |section| %> <li><%= section.name %></li> <% end %> But on the last record returned, I want to do something ...
0
votes
1answer
613 views

Where should I set HTTP headers, such as Expires?

I want to deploy an app using Sinatra on Phusion Passenger w/ nginx. If I want to set the Expires header on my static content - stylesheets, say - there are appear to be three places where I could ...
4
votes
3answers
561 views

Sinatra helper to fake a request

Summary Within a Sinatra web app, how can I make a virtual request to the application and get the response body back as text? For example, these routes... get('/foo'){ "foo" } get('/bar'){ ...
3
votes
3answers
2k views

Ruby / Sinatra - Already initialized constant WFKV_

Running ruby 1.9.2p290 and the latest version of Sinatra. When I try to run my Sinatra app ruby application.rb I get an error ...
3
votes
1answer
617 views

Error when starting Sinatra: “tried to create Proc object without a block”

I am very new to ruby / rails and have an issue that I have not been able to figure out but feel it should be relatively simple to fix. Command: ruby app.rb Error: ...
3
votes
2answers
469 views

What is the easiest way to get an embedded upload progress bar using Ruby/Sinatra/Haml/Passenger/nginx?

I have a website where people can upload 30+mb of data in a single block, and I want to be able to show them the progress of their upload without causing the web page to become unresponsive, similar ...
1
vote
2answers
204 views

How to render a plain HTML file with Sinatra?

I have a simple sinatra application. All I want to do is use it as a wrapper to serve a static HTML file at a specific route. My directory structure looks like this: /directory myhtmlfile.html ...
1
vote
5answers
231 views

Sinatra tests always 404'ing

I have a very simple Sinatra app which I'm having trouble testing. Basically, every single request test returns a 404 when I know from testing in the browser that the request works fine. Any ideas ...
1
vote
2answers
398 views

Sinatra Sessions Not Persisting as Expected

I'm trying to use redirects and sessions in Sinatra to pass some data around the site. Here's a simplified example, using PrettyPrint for debugging: require 'pp' require 'rubygems' require 'sinatra' ...
0
votes
2answers
273 views

A Sinatra + Datamapper app on Heroku

I've had some problems running an app on Heroku. It uses Sinatra and Datamapper. The full project is here: https://github.com/pixelwolf/phonedb The problem happens when I deploy the app, all goes ...
0
votes
0answers
106 views

Pusher style notification gets skipped when using async_sinatra

I have the following code snippet using sinatra/async where it seems the call to second body statement is skipped. All the examples on the web seem to say this should work. How do I send push ...

1 2 3 4 5