I am running Rails 3.2.3 and when I run
rake asset:precompile
It takes round 40 minutes to complete.
The follow is in my assets group
gem 'sass-rails', '~> 3.2.3'
gem 'bootstrap-sass', '~> 2.0.1'
gem 'coffee-rails', '~> 3.2.1'
# See https://github.com/sstephenson/execjs#readme for more supported runtimes
gem 'therubyracer'
gem 'uglifier', '>= 1.0.3'
This is running on my local development box. It takes 2,338 seconds which is about 40 minutes. If don't compile locally Heroku times out at round 500 seconds. I have heard people have issues with 1 to 3 minute compiles. But this is way more. What could be the problem?