Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to run my Rails application in a different scope so that I can deploy it in a war file (mydepartment.war) which will share a Tomcat instance with another Java app WAR. The solution I chose was to modify the rackup file (/config.ru).

map '/mydepartment' do
   run Myapp::Application
end 

When I do this, my base URL becomes http://localhost:3000/mydepartment instead of just http://localhost:3000. The application runs fine, but it doesn't download CSS/JS specified by stylesheet and script helpers.

However, when I try to include stylesheets and Javascript using helpers, such as

<%= stylesheet_link_tag :all %>
<%= javascript_include_tags :defaults %>

The URLs they generate include localhost:3000/javascripts/jquery.js instead of localhost:3000/mydepartment/javascripts/jquery.js. I actually tried typing the latter in the browser, and the sheet downloads fine.

How can I coax the Rails Javascript/CSS helpers to download files in the new scope without hardcoding it?

share|improve this question

1 Answer

up vote 1 down vote accepted

if you're not on rails 3.1:

Add this to your config/environments/production.rb (if on production mode):

config.action_controller.asset_path = proc { |path| "/mydepartment#{path}" }

share|improve this answer
I'm on Rails 3.0.10. I tried this and restarted my server. Didn't work! – Jay Godse Nov 2 '11 at 19:33
sorry my fault, forgot the action_controller part ;) see my edited answer – sled Nov 2 '11 at 19:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.