Tagged Questions
0
votes
0answers
20 views
How to get Helios and Rails to work together (Rack issues)?
I'm trying to get Helios (https://github.com/helios-framework/helios) to work with an existing Ruby on Rails 3.1 application. But there's a conflict regarding rack version; bundle install gives me ...
1
vote
1answer
74 views
Rename session cookies in Rails
since I'd like the session cookie to reflect the url and not the app name, I'd like to rename the cookies..
The current session cookie name is called _APPNAME_session
is there a way to rename it to ...
1
vote
1answer
137 views
Connection compressed with DEFLATE, hosted on Heroku but rack middleware doesn't report using Rack::Deflater
Chrome claims that the connection to my site is compressed with DEFLATE. The issue is that I am not using Rack::Deflater (I don't see it when I run rake middleware). My staging site has pretty much ...
0
votes
2answers
184 views
Rack middleware how to redirect to a view in my Rails application
In my Rails 3.1 app I created a Rack Middleware to verify access. If access is not approved user is to be redirected to a page. Specifically it will be a page I already have in my views. Suppose I am ...
1
vote
1answer
342 views
Rails 3: How to declare Rack middleware in application.rb
Many examples such as these two:
How to use rack middleware with Rails3?
http://asciicasts.com/episodes/151-rack-middleware
define middleware in a class and then add
config.middleware.use ...
5
votes
2answers
2k views
How do I use Rack::Proxy within Rails to proxy requests to a specific path to another app
I found this great blog post on how to use Rack::Proxy as a separate proxy app. The article explains how he uses Rack::Proxy to proxy requests to http://localhost:3000 to an app on port 3001 and ...
6
votes
2answers
810 views
Mount an engine on subdomain Rails 3.1
I am doing some experiments with Mountable Engines. First i need your opinion for a scenario, Is it a good idea that we make "chunk of large modules" in an application as "mountable engines".
I tried ...
1
vote
1answer
1k views
Rack::Deflater apparently gzip page but it appears as gibberish in browser
I've deployed a rails 3.1 app on the new cedar stack on heroku.
The new stack doesn't automatically provide gzipping so I've added
use Rack::Deflater in my config.ru
Testing it through curl with the ...
2
votes
1answer
352 views
How to handle missing Host header in Rails 3.1
I'm seeing several exceptions a day on a very low traffic site. The exceptions look like this:
Missing host to link to! Please provide the :host parameter,
set default_url_options[:host], or set ...
4
votes
2answers
423 views
Passenger at Dreamhost throws: “activated rack 1.2.1”
You have already activated rack 1.2.1, but your Gemfile requires rack 1.3.4. Consider using bundle exec.
Passenger throws me this in the Dreamhost. How can i solve?
EDIT:
I asked them to remove the ...
0
votes
0answers
118 views
How do I stub a mobile device in rspec tests?
I need to test a mobile device via rspec, using mobile_fu is_mobile_device?, but it keeps returning false.
And upon investigation, it is actually querying request.header['X_MOBILE_DEVICE'] value, and ...
1
vote
3answers
680 views
Rails 3.1rc4 + Rack: has something changed?
I can't seem to use a simple rack middleware with Rails 3.1 (rc4). Is something missing? Here's how I built my app:
$ rails new skel192 -G -O -T
I add this line at the end of Gemfile:
gem ...