Rack provides a minimal interface between webservers supporting Ruby and Ruby frameworks.

learn more… | top users | synonyms

2
votes
1answer
190 views

Loading a file with Rack from a specific route

I'm following part of this Railscast and trying to load a static file using Rack when a specific route is called: match "/myApi.js" => lambda { |env| [200, {}, Rack::File.new("/v1/myApi.js")] } ...
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. ...
1
vote
3answers
1k views

Sinatra, Rails and Rack - User/Session Management

Does anyone know of a way to authenticate in a Rails application and allow other Sinatra applications to pass that authentication token and session state through rack? I'm looking for something that ...
4
votes
2answers
2k views

How can I pass SSL options into “rails server” in Rails 3.0?

Is there a way to pass SSL options into "rails server" (on Rails 3.0.0), using a custom Rack config or something similar? I'm trying to do two things: enable Cucumber to run tests that involve both ...
0
votes
1answer
245 views

Rails Modify Request Route

As luck would have it, I am creating a Rails application (2.3.8) in which I need to change where a request is dispatched based on some criteria. Basically, I need a custom dispatcher. I have looked ...
2
votes
1answer
286 views

rack duplicates every log message

When I test a Sinatra app on my local box with rackup, every log message appears twice. How can I get them to appear only once?
2
votes
1answer
1k views

Rack Web Server and https: tutorial?

Can anyone provide a link to a description or tutorial dealing with the setup of https and installint certs etc using the Ruby RACK webserver? Thanks
17
votes
7answers
5k views

Where do you put your Rack middleware files and requires?

I'm in the process of refactoring some logic built into a Rails application into middleware, and one annoyance I've run into is a seeming lack of convention for where to put them. Currently I've ...
0
votes
1answer
156 views

Rails parses jQuery quotes wrong

I'm using Rails 2.3.8 and have a jQuery AJAX form using posted using: jQuery.fn.submitWithAjax = function() { this.submit(function() { jQuery.post(this.action, $j(this).serialize(), null, ...
0
votes
1answer
2k views

Automatically encode Rack output with JSON when Content-Type is application/json

I've got a modular Sinatra app and I'd like to encode the output as JSON when the content-type dictates. At the moment I'm doing so manually in my routes: get 'someroute' do # content-type is ...
0
votes
1answer
179 views

Drag and drop ala GMail a gem for Ruby / Rack?

Is there a widget or a gem which implements this feature? It works only in Chrome and Firefox but it is very cool and no plugins are needed ...
1
vote
3answers
3k views

Sinatra and Bundler

I'm trying to get Bundler setup so I can deploy my Sinatra app to server with all the correct gems. I've created my Gemfile source :gemcutter gem 'sinatra', '1.0' gem "nokogiri", "1.4.2" gem "rack", ...
2
votes
2answers
221 views

rackup in Netbeans project

How can I configure a Netbeans Ruby project so that it does not run a Ruby interpreter (a Ruby "platform"), but starts up rackup? Thanks
0
votes
1answer
144 views

Has anyone tried running IronRuby.Rack through Kayak?

I recently learned about kayak, an HTTP server written in C# (i.e. not through IIS). I'm wondering if anyone has tried hooking up IronRuby to run Rack through this platform?
1
vote
1answer
266 views

Rails Gem or code to have your rails application respond to email and create a record in the database

I am creating a ruby on rails application and I want my users to be able to email the application and have the application take in the email and create a issue record in the database. Is there a GEM ...
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 ...
4
votes
1answer
2k views

Rack::Session::Pool with Sinatra

I have a Sinatra webapp I've built using enable :sessions where I access my session data with session[:mything]. I now want to store data on the server side (ie. with database based sessions) and I ...
0
votes
0answers
383 views

rack 1.1.0 error in parse_multipart

I got an error while uploading a file. /!\ FAILSAFE /!\ 07/26/2010 02:37 Status: 500 Internal Server Error bad content body /usr/lib/ruby/gems/1.8/gems/rack-1.1.0/lib/rack/utils.rb:467:in ...
2
votes
3answers
2k views

Hook for gems to add middleware on the Rack stack with Rails 3

I am trying to find out how a gem in the Rails 3 gemfile can automatically add middleware to the Rack stack. I am looking for the hook in that gem. For example ... when I add the devise gem to my ...
5
votes
1answer
1k views

How to set a content-type for a specific file with Rack?

I want to have Rack serve a specific file with a specific content type. It's a .htc file and it needs to be served as text/x-component so that IE will recognize it. In apache I would just do AddType ...
7
votes
2answers
4k views

How do I set a cookie with a (ruby) rack middleware component?

I'm writing a rack middleware component for a rails app that will need to conditionally set cookies. I am currently trying to figure out to set cookies. From googling around it seems like this ...
0
votes
1answer
175 views

Is there anything like request_uri from ActionController::Request in Rails for Rack?

I wrote a rack middleware for my rails that that does something based on the if the REQUEST_URI equals specific string. However what I quickly found out was in my development environment, which is ...
0
votes
1answer
233 views

Ruby require 'rack' fails

I'm trying to install redmine and I have a problem with phusion-passenger. Installer fails on dependencies saying that rack is missing. I've investigated the code to check where it looks for it, but ...
0
votes
1answer
604 views

Rack Request Log

Why Is there a reason Rack's request log by default outputs to stderr? If i'm not mistaken, the request log is Rack::CommonLogger which according to the RDoc: forwards every request to an app ...
2
votes
1answer
494 views

Rack port to Java?

Do you know if Rack was ported to Java? To be more specific, I am aware of jruby-rack but I am looking for a native Java (re)implementation of Rack, if any?! Thank you in advance, - florin
3
votes
1answer
442 views

What does a rack handler do exactly?

What does a rack handler do exactly, i.e. can someone explain in pseudo-code the steps that a rack handler takes to deliver a result for a request?
2
votes
2answers
2k 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 ...
2
votes
1answer
217 views

Using variables (database requests) in the config.ru

I'm new to Rack and try to get my head around it running Ruby on Rails 3.0.0.beta4. I'm starting a Rack app in the config.ru file but would like to use a variable there that is stored in my database. ...
1
vote
2answers
286 views

Can a Rails app launch a rack app?

If I have a Ruby on Rails application running on my Apache shared server (with Mongrel), can I get it to launch/run another total separate Rack application? Then could I possibly build a Rails app ...
3
votes
2answers
381 views

Rails: losing quotes in post parameters

I'm adding full-text search to my Rails site and allowing users to enter double quotes in the search input box. The problem is that the double quotes seem to get filtered out by Mongrel and so I never ...
5
votes
3answers
2k views

Set Rack session cookie expiration programatically

I'm using Rack to try to implement "Remember Me" functionality in my Sinatra app. I'm able to set the session cookie to expire when the session ends or in X seconds time but I'd like to do both. For ...
3
votes
1answer
1k views

Can I have Sinatra / Rack not read the entire request body into memory?

Say I have a Sinatra route ala: put '/data' do request.body.read # ... end It appears that the entire request.body is read into memory. Is there a way to consume the body as it comes into the ...
1
vote
1answer
860 views

Rack, FastCGI, Lighttpd configuration

I want to run a simple application using Rack, FastCGI and Lighttpd, but I cannot get it working. I get the following error: /usr/lib/ruby/1.8/rack/handler/fastcgi.rb:23:in `initialize': Address ...
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, ...
1
vote
1answer
171 views

rack variables not showing up

rack.request.form_input isn't in my env variable--what's going on? anyone??
0
votes
1answer
144 views

setting cookies

Okay, so I'm trying to set cookies using Ruby. I'm in a Rack environment. response[name]=value will add an HTTP header into the HTTP headers hash rack has. I know that it works. But the following ...
0
votes
0answers
453 views

Rack Stream Content

I have a simple rack app that's designed to marshal data from Rackspace CloudFiles, however it doesn't seem to be working. I'm a complete noob when it comes to rack, so I'm hoping someone can show me ...
1
vote
1answer
893 views

Sinatra not passing header with redirect

I have a simple Sinatra proxy, which when an endpoint is called, will redirect to another endpoint on the same Sinatra proxy. When I make a request with a header, the proxy doesn't seem to pass this ...
0
votes
2answers
1k views

deploy a sinatra app with passenger gives only 404, page not founds. Yet a simple rack app works

I have correctly (or prbably not) installed passenger on apache 2. Rack works, but sinatra keeps giving 404's. Here is what works: config.ru: #app = proc do |env| return [200, { "Content-Type" ...
1
vote
1answer
1k views

Rack::ResponseHeaders in rackup for Sinatra

I think this is a very easy one, but I can't seem to get it right. Basically, I'm trying to use Rack middleware to set a default Cache-Control header into all responses served by my Sinatra app. It ...
7
votes
4answers
2k views

How can I test helpers blocks in Sinatra, using Rspec?

I'm writing a sinatra app and testing it with rspec and rack/test (as described on sinatrarb.com). It's been great so far, until I moved some rather procedural code from my domain objects to sinatra ...
4
votes
1answer
577 views

In Sinatra - does anyone use test fixtures? how is your test suite set up?

I'm coming from a Ruby/Rails world. I'm getting testing set up on a Sinatra project (with Rack::Test). I usually use Fixtures in testing. Is there an equivalent for Sinatra? How do people set up ...
0
votes
2answers
2k views

Access Rails 3 Session from Rack?

I was able to do the following in Rails 2.3.5 to access attributes that I set on the session from within my Rails app. Now in Rails 3, env["rack.session"] is nil. How do I do the same thing in Rails ...
0
votes
1answer
515 views

nginx + passenger not using rackup file

I have an issue where Passenger is not detecting the config.ru file for the following nginx server server { listen 80; passenger_enabled on; server_name callumj.com ...
2
votes
1answer
226 views

How do I serve a binary file through rack?

I think I'm being a bit silly here, but I keep getting errors complaining about the SERVER_NAME key missing from the env hash, and I can't find any substantial documentation on Rack::SendFile.. so- ...
2
votes
2answers
128 views

How does RoR's reloading content on refresh work?

RoR allows you to, as long as the env is development, change parts of the your application code and then just refresh the browser--and everything is changed, without having to restart Mongrel. How ...
2
votes
1answer
1k views

Thin, Sinatra, and intercepting static file request to do CAS authentication

I'm using the casrack-the-authenticator gem for CAS authentication. My server is running Thin on top of Sinatra. I've gotten the CAS authentication bit working, but I'm not sure how to tell Rack to ...
1
vote
1answer
595 views

How do I pass a cookie to a Sinatra app using curl?

I'm using the code from the example titled "A Slightly Bigger Example" from this tutorial http://rubylearning.com/blog/2009/09/30/cookie-based-sessions-in-sinatra/ to figure out how to send a cookie ...
1
vote
1answer
69 views

Issues loading IronRuby.Rack assembly

I'm trying to get IronRuby on Rails running with iis7 server 2k8 and can only get as far as it cannot load the assembly 'IronRuby.Rack' (Screen Shot: http://grab.by/3VZm) has anyone gotten this ...
5
votes
1answer
1k views

Getting Rails Application Running Under IronRuby Rack

Anyone else playing with ironruby? I have successfully got the IronRuby.Rails.Example project running on my local machine under IIS 5.1. I am now attempting to get my own demo rails site running in ...

1 15 16 17 18 19