1
vote
1answer
48 views

Best practice for making single-use pages

From time to time, we held special events on our site (e.g. discounts or lottery draw). These events each will have a special page (or pages) with very distinct styles/javascripts/images. These ...
0
votes
1answer
135 views

Rails 3.2 assets:precompile Permission denied 123

I'm trying to precompile my rails app but get this weird error that I don't know how to follow? rake assets:precompile --trace ** Invoke assets:precompile:all (first_time) ** Execute ...
1
vote
1answer
150 views

Trouble creating a symlink in Rails public folder

In my Rails app I want to create a symlink in public/ that links to another folder. I can create the symlink and navigate through it but I can't seem to get Rails to serve images out of it. Is there a ...
2
votes
2answers
121 views

Rails assets: How can you reference images from another app?

Rails adds an md5 hash to images names when moving them to the /public/assets directory during precompilation. The problem is that these hashes are unpredictable, so how can I know what they're going ...
1
vote
1answer
509 views

Override an asset host in rails, via the helper methods?

I was wondering if there was a way to override the asset host of an image. For example lets say I have the following asset host and image tag config.asset_host = "www.xxx.com image_tag "blerg.gif" ...