Next up I'm investigating the following non-fatal error message from
the Heroku deploy step...
>>>>>>>>
-----> Preparing app for Rails asset pipeline
       Running: rake assets:precompile
       rake aborted!
       could not connect to server: Connection refused
       Is the server running on host "127.0.0.1" and accepting
       TCP/IP connections on port 5432?

       Tasks: TOP => environment
       (See full trace by running task with --trace)
       Precompiling assets failed, enabling runtime asset compilation
       Injecting rails31_enable_runtime_asset_compilation
       Please see this article for troubleshooting help:
       http://devcenter.heroku.com/articles/rails31_heroku_cedar#troubleshooting
-----> Rails plugin injection
       Injecting rails_log_stdout
       Injecting rails3_serve_static_assets
>>>>>>>>

Following along with 
https://devcenter.heroku.com/articles/rails3x-asset-pipeline-cedar#troubleshooting,
I tried

---------------------------- config/application.rb
----------------------------
index ab4c988..114e952 100644
@@ -11,6 +11,7 @@ end

 module Kb
   class Application < Rails::Application
+  config.assets.initialize_on_precompile = false
   config.assets.precompile += %w(admin.css admin.js)


But that leads to the following error:

>>>>>>>>>

-----> Preparing app for Rails asset pipeline
       Running: rake assets:precompile
       rake aborted!
       stack level too deep
       (in /tmp/build_1l6w73twaoamf/vendor/bundle/ruby/1.9.1/gems/
jquery-ui-themes-0.0.5/app/assets/stylesheets/jquery-ui/
flick.css.scss)

       Tasks: TOP => assets:precompile:primary
       (See full trace by running task with --trace)
       Precompiling assets failed, enabling runtime asset compilation

>>>>>>

Interestingly, I get the same error running "rake assets:precompile"
locally...


-- 
You received this message because you are subscribed to the Google Groups "Hobo 
Users" 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/hobousers?hl=en.

Reply via email to