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

learn more… | top users | synonyms

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. ...
8
votes
9answers
15k views

Bypassing rack version error using Rails 2.3.5

I'm currently on Dreamhost attempting to run a Rails 2.3.5 app. Here is the situation, Dreamhost's servers have Rails 2.2.2 installed. Of course, I can't update a shared host's rails version, so I ...
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, ...
22
votes
3answers
9k views

How to serve static files via Rack?

I am currently developing a Rack-based application and want to redirect all file requests(e.g. filename.filetype) to a specified folder. Rack::Static only supports file requests for a special ...
0
votes
1answer
710 views

Testing Rack Routing Using rSpec

I have a rule in my routes.rb: constraints AssetRestrictor do match '*seopath' => SeoDispatcher end Then in lib/seo_dispatcher.rb, I have this: class SeoDispatcher AD_KEY = ...
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 ...
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 ...
27
votes
2answers
14k 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 ...
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 ...
61
votes
2answers
8k views

What is Rack middleware?

What is Rack middleware in Ruby?
9
votes
2answers
3k views

mongoid query caching

Rails' ActiveRecord has a feature called Query Caching (ActiveRecord::QueryCache) which saves the result of SQL query for the life-span of a request. While I'm not very familiar with the internals of ...
3
votes
2answers
1k 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 ...
12
votes
2answers
2k views

Any way to serve gzip assets from heroku?

I'm wondering if there is any way to get the Rails webserver (thin) to serve the *.gz files the asset pipeline creates. As I understand, those have a higher compression level than that of ...
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 ...
8
votes
1answer
914 views

How do I specify Origin Whitelist Options in Sinatra using Rack/Protection

I have a web app, lets say http://web.example.com making a POST request to http://api.example.com. The api server is running the latest version of Sinatra with rack protection enabled. I am getting ...
6
votes
3answers
2k views

Is there any debug toolbar for Rails 3.x

I used Rack::Bug more than one year ago, now I'd like to use it with a new Rails 3.1 project. I tried to install it, both the master and rails3 branches, but with no luck. Also tried some github ...
3
votes
4answers
2k views

How to test Sinatra app using session

How to test Sinatra application wich is using session? get "/", {}, {'rack.session' => { 'foo' => 'blah' } } This code doesn't work for me, I have 'enable :sessions' in my app.
3
votes
1answer
2k views

Multipart response in Ruby/Rack

I want my server to send a multipart response (multipart/x-mixed-replace). I'd prefer some kind of solution using the Sinatra framework or a generic Rack app, but any example in ruby would be nice. ...
3
votes
1answer
171 views

How to decode a cookie from the header of a websocket connection handshake? (Ruby)

I am running a Sinatra app within an EventMachine.run loop and in my ws.onopen method I wish to check the handshake header's cookie to ensure that the incoming request is coming from a registered user ...
4
votes
1answer
2k views

Can't activate rack (~> 1.4.0, runtime) already activated rack-1.5.0

I've been looking for an answer to this for over a day now, and searched StackOverflow thoroughly. I understand the conflict that's happening, and I should just uninstall the version of Rack I don't ...
3
votes
2answers
70 views

Disable Sprockets asset caching in development

I'm using Rails 3.2.13 and the Rails Asset Pipeline. I want to use the Asset Pipeline so I can use SASS and CoffeeScript and ERB for my assets and have the Pipeline automatically compile them, so I ...
0
votes
1answer
363 views

use some Middleware only for specific Rack website

I have a Rack server where I run multiple websites. use Rack::Session::Cookie app = lambda do |env| case # Kek Mobile when env['HTTP_HOST'] =~ /mobi.kek.com/ require ...
19
votes
8answers
6k views

How to redirect without www using Rails 3 / Rack?

I understand there are a lot of questions that answer this. I'm familiar with .htaccess and nginx.conf methods, but I do not have access to such traditional configuration methods on heroku. Simone ...
11
votes
3answers
5k views

Ruby Rack - mounting a simple web server that reads index.html as default

I'm trying to get some information from this tutorial: http://m.onkey.org/2008/11/18/ruby-on-rack-2-rack-builder basically I want to have a file config.ru that tell rack to read the current directory ...
6
votes
2answers
4k views

How do I use a Rack middleware only for certain paths?

I'd like to have MyMiddleware run in my Rack app, but only for certain paths. I was hoping to use Rack::Builder or at least Rack::URLMap, but I can't quite figure out how. This is what I thought ...
1
vote
4answers
4k views

Sinatra, JavaScript Cross-Domain Requests JSON

I run a REST-API build on top of Sinatra. Now I want to write a jQuery Script that fetches data from the API. Sinatra is told to response with JSON before do content_type :json end A simple ...
5
votes
2answers
2k views

You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3. Consider using bundle exec

I've got a problem while i try to run my app : You have already activated rack 1.3.2, but your Gemfile requires rack 1.2.3. Consider using bundle exec. I read a lot about this kind of error, but i ...
18
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 ...
9
votes
1answer
1k views

Why does Foreman not output some things until I press Control-C?

I just got into rails programming and it looks like there are two programs I can use to run my project locally: rackup and foreman. One difference I noticed is that foreman will not output some ...
7
votes
1answer
1k views

How can you block or filter IP addresses on Heroku?

Is there a way to implement IP filtering or IP access rules much like I would with nginx/apache to restrict or block certain IPs on Heroku? Note: I know this can be done from within my application ...
3
votes
1answer
3k views

Simple and Ideal Logging in Sinatra

I went through few blogs and sites which gave me some information about how to log in sinatra but didnt work for my app and also i went through a gem called sinatra-logger didnt tried it, wanted to ...
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 ...
12
votes
4answers
3k views

Rack Error “Rack::Lint::LintError: Response body must respond to each”

I'm going through the tekpub rack tutorial but when I try to run even a basic program in rack i get this error. ERROR Rack::Lint::LintError: Response body must respond to each ...
9
votes
3answers
5k views

HTML5 video will not loop

I have a video as a background to a web page, and I am trying to get it to loop. Here is the code: <video autoplay='true' loop='true' muted='true'> <source ...
7
votes
3answers
3k views

Problem with require rack/openid in Rails 3 [native require work properly]

I install plugin open_id_authentication and have this error: /usr/lib/ruby/gems/1.9.1/gems/activesupport-3.0.0.beta/lib/active_support/dependencies.rb:167:in `require': no such file to load -- ...
4
votes
2answers
4k views

Robust way to deploy a Rack application (Sinatra)

I'm looking for a robust way to deploy a Rack application (in this case a Sinatra app). Requests will take a little time (0.25-0.5 sec waiting on proxied HTTP requests) and there may be a decent ...
8
votes
3answers
2k views

Rails 3.1 Force Regular HTTP

Previously, I had been using ssl_requirement to give us fine grained control over which pages were served over ssl and which were served over plain http. According to the ssl_requirement's own wiki, ...
6
votes
3answers
3k views

Static website on Heroku Cedar

I tried following the instructions here in order to create a static website on Heroku's Cedar stack. I have put the site up here. When I try to push the app (using "git push heroku master"), I get ...
6
votes
1answer
3k views

Rails 3, HTTP extensions (WebDAV) and Rack App mounting

1 The following is more to point out to the code devs an issue of rails that can be percieved as a flaw. 2 And also me asking some oppinions from people who know better. I want to add WebDAV to my ...
6
votes
2answers
5k views

Where does RACK log to?

I am running a sinatra app through RACK. To which file does the activity get logged ? Also how can I set the log file path ?
5
votes
1answer
618 views

best/most elegant way to share objects between a stack of rack mounted apps/middlewares?

What is the best idiom to share an object between rack mounted applications/middlewares? For example, this config.ru has two Sinatra apps mapped to differents endpoints: class App1 < ...
5
votes
1answer
2k views

Using Cookies with Rack::Test

I'm trying to write RSpec tests for my Sinatra application using Rack::Test. I can't understand how I can use cookies. For example if my application set cookies (not via :session) how can I check ...
4
votes
2answers
604 views

Update middleware in Rails

Is there any way to MODIFY (NOT replace) a middleware in rails? So instead of: config.middleware.delete ::Rack::Cache config.middleware.use ::Rack::Cache, :metastore => "rails:/", :entitystore ...
4
votes
1answer
2k views

Rack Error with DreamHost, Passenger, and Rails 3.0.0.rc

Background: I have viewed this question as well as this one - sadly, to no avail. Error Message (Passenger): You have already activated rack 1.1.0, but your Gemfile requires rack 1.2.1. Consider ...
2
votes
2answers
654 views

Force 'www' in Rails3 hosted on Heroku without .htaccess

I was wondering if there was a Rack alternative to forcing the 'www' in the URL since Heroku doesn't use .htaccess files. Maybe even a nice way to do it in routes? Thanks
2
votes
2answers
725 views

Heroku | Different performance parameters for different parts of your application

I have an Rails 3 application hosted on heroku, it has pretty common configuration where I have a client facing part of my application say: www.myapplication.com and an admin part of my application ...
2
votes
2answers
1k views

how to change default behaviour of rack offline

I am trying to use rack offline in rials to make my webpage available offline. By default rack offline takes all files from the public folder into the cache manifest. In which file should I make ...
2
votes
1answer
736 views

Rails 3 request dispatch cycle

I was looking at the rails 3 architecture in order to understand the process of dispatching a request . The whole process is quite simple. Application is a rack application which finally delegates its ...
2
votes
1answer
2k views

How to use rack middleware with Rails3?

Hey guys, I'm trying to make the rack middleware NotFound to work with rails3 but I needed to make some changes to return some json, so I basically defined a new class : class NotFound def ...
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

1 2 3