3
votes
2answers
57 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 th …
0
votes
1answer
32 views
Ruby & Datamapper checking if a record exists, and where?
I have a basic Ruby app that I am building with Sinatra, Datamapper and has user authentication using OAuth. When I receive the data back from the Oauth service, I save a record of …
0
votes
2answers
51 views
Ruby, Sinatra and Closing Connections
Does anyone know if there is a way to prevent sinatra from sending the 'Connection: close' header in its responses?
To be clear, I have a very simple
get '/path' do
puts "Some …
0
votes
2answers
81 views
Using Rack::Session::Datamapper
mkristgan's rack_datamapper gem says that it "can be wrapped to be used in a specific environement, i.e. Rack::Session::Datamapper".
Unfortunately, I don't know quite enough abou …
4
votes
2answers
85 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.
2
votes
5answers
259 views
Are there any important differences between Camping and Sinatra?
My feeling is that the differences between Camping and Sinatra are not very significant and that you could safely choose either one and be ok. But I want to ask the Ruby experts if …
0
votes
1answer
29 views
How to handle POSTed XML via Sinatra Ruby app
I'm planning on using Sinatra for a new tiny webservice (WS) that I need to put together for a client.
The WS will only have two methods, one accessed via GET and one via POST. F …
0
votes
1answer
22 views
Can I protect with a .htaccess file some routes with sinatra?
I wrote a small app with Sinatra and have some admin routes (/admin/new, admin/edit/2, ...) and want to protect them with a .htaccess prompt. Can somebody tell me how I do that?
0
votes
1answer
39 views
How can I randomize DataMapper collection and convert it to JSON?
Hi,
I'm pulling my hair out trying to build a little random photo JSON feed using DataMapper/Sinatra. Here's what I have so far..
Photo.favorites.to_json(:methods => [:foo, :b …
0
votes
2answers
59 views
newbie sinatra question
To return a file using sinatra, I had been using this:
get '/:name' do
x = File.open('c:/mywebsite/' + params[:name],'r')
end
where the incoming url is "http://localserv …
0
votes
0answers
42 views
Ruby, Sinatra and Streaming
I'm furiously trying to debug why iTunes isn't accepting the data I'm sending to it (as a DAAP Server) -
you can see what I'm trying to do on the github page.
The only difference …
5
votes
3answers
118 views
Having trouble debugging Sinatra app in production
Hello Stackies,
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 t …
0
votes
0answers
17 views
Ruby 1.9 encoding problems with Sinatra and Rack
For giggles I tried to start my blog using ruby 1.9. All the gems compile and work, but I crank it up and open it in a browser, I get this:
Many newlines
I haven't found any usef …
6
votes
3answers
612 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 …
0
votes
1answer
38 views
Unable to output MySQL tables which involve dates in Sequel
I'm trying to use Sequel to access a MySQL database in Ruby. When I try accessing a table which involves a data column, I am presented with an error. When I access a table without, …
