[Rails] Re: Asset link in production is incorrect

2011-09-09 Thread Irish
I was having this same issue when upgrading a 2.3.12 app to 3.1 and adding Greg's suggestion config.assets.digest = true to production.rb fixed it for me. Thanks! On Sep 8, 9:00 am, Greg Reinacker gr2...@gmail.com wrote: Do you have config.assets.enabled = true in your application.rb or

[Rails] Re: Asset link in production is incorrect

2011-09-09 Thread Joshua Partogi
Thanks guys, I think it is because I use this bit of line: Bundler.require *Rails.groups(:assets = %w(development test)) I changed it to: Bundler.require(:default, :assets, Rails.env) and it works. On Sep 9, 4:31 pm, Irish supair...@gmail.com wrote: I was having this same issue when upgrading