I want to add HTML5 offline support for my Rails 3.1 app, and I've come across rack-offline, a gem suited for this purpose. However, rack-offline only adds the assets in the public folder to the application cache manifest file. How do I have it also add all the compiled assets from my assets folder (the ones that the asset pipeline generates)?
Specifically, I have the following in my routes.rb file:
offline = Rack::Offline.configure do
cache "images/masthead.png"
public_path = Rails.public_path
Dir[public_path.join("javascripts/*.js")].each do |file|
cache file.relative_path_from(public_path)
end
network "/"
end
The same way that I have the Rails.public_path, can I get a path to the compiled assets? That way I can use the above code to add the files in that path to the cache manifest.