On 17 ene, 16:30, johnnybutler7 <[email protected]> wrote: > Hi, > > I can deploy to staging fine. > > When i try and deploy to production i get the following error below, > it gets so far and then bombs out. > > RAILS_ENV=production bundle exec rake assets:precompile --trace > > mkdir -p /var/www/rails/workstars/site/releases/20120117151339/public/ > assets/vouchers > mkdir -p /var/www/rails/workstars/site/releases/20120117151339/public/ > assets > rake aborted! > undefined method `bytesize' for nil:NilClass > > I have narrowed it down to this piece of code which is enabled in > production.rb > > config.assets.compress = true > > Anyone got any ideas, im a bit lost at this stage, > > JB
I had a similar issue just today, which was solved by adding to config/ environments/production.rb the following: config.assets.precompile += %w(... rails_admin/rails_admin.js rails_admin/rails_admin.css) Hope it helps if you still face this problem. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.

