Hi Nico

Can you show us how you're loading the observers in your application.rb file?

-- 
Pat

On 05/11/2011, at 4:02 PM, nico wrote:

> Strangely, thinking sphinx's model loading in define_index triggers a
> database connection to be established when the model with define_index
> is observed by an observer.
> 
> This causes rake tasks like assets:precompile to depend on a db
> connection which should normally not be required. This dependency
> makes asset compilation on Heroku fail. If I remove the observer
> loading in application.rb, the database dependency does't exist and
> rake tasks work fine without a db configured.
> 
> It's quite hard to debug this, help is greatly appreciated! Here is
> the stack trace for rake assets:precompile when rails is configured
> with a non existing database and using observers:
> 
> bundle exec rake assets:precompile RAILS_ENV=staging --trace
> ** Invoke assets:precompile (first_time)
> ** Execute assets:precompile
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/bin/ruby /Users/nico/.rvm/gems/
> ruby-1.9.2-p290/bin/rake assets:precompile:all RAILS_ENV=staging
> RAILS_GROUPS=assets --trace
> ** Invoke assets:precompile:all (first_time)
> ** Execute assets:precompile:all
> ** Invoke assets:precompile:primary (first_time)
> ** Invoke assets:environment (first_time)
> ** Execute assets:environment
> ** Invoke environment (first_time)
> ** Execute environment
> rake aborted!
> FATAL:  database "non_existing_database" does not exist
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:1032:in
> `initialize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:1032:in `new'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:1032:in
> `connect'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:301:in
> `initialize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:28:in `new'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/postgresql_adapter.rb:28:in
> `postgresql_connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:304:in
> `new_connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:323:in
> `checkout_new_connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:265:in
> `block (2 levels) in checkout'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:261:in
> `loop'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:261:in
> `block in checkout'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:260:in
> `checkout'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:162:in
> `connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_pool.rb:409:in
> `retrieve_connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_specification.rb:
> 107:in `retrieve_connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/connection_adapters/abstract/connection_specification.rb:
> 89:in `connection'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/base.rb:1473:in `replace_bind_variables'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/base.rb:1460:in `sanitize_sql_array'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/base.rb:1366:in `sanitize_sql_for_conditions'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/relation/query_methods.rb:259:in `build_where'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/relation/query_methods.rb:124:in `where'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/base.rb:444:in `where'
> /Users/nico/Rails/myapp/app/models/user.rb:194:in `<class:User>'
> /Users/nico/Rails/myapp/app/models/user.rb:100:in `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `block in require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:225:in `load_dependency'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:348:in `require_or_load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:489:in `load_missing_constant'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:181:in `block in const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/aws-s3-0.6.2/lib/aws/s3/
> extensions.rb:206:in `const_missing_from_s3_library'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:501:in `load_missing_constant'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:181:in `block in const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/aws-s3-0.6.2/lib/aws/s3/
> extensions.rb:206:in `const_missing_from_s3_library'
> /Users/nico/Rails/myapp/app/models/company.rb:103:in `<class:Company>'
> /Users/nico/Rails/myapp/app/models/company.rb:45:in `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `block in require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:225:in `load_dependency'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:348:in `require_or_load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:489:in `load_missing_constant'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:181:in `block in const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/aws-s3-0.6.2/lib/aws/s3/
> extensions.rb:206:in `const_missing_from_s3_library'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:501:in `load_missing_constant'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:181:in `block in const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/aws-s3-0.6.2/lib/aws/s3/
> extensions.rb:206:in `const_missing_from_s3_library'
> /Users/nico/Rails/myapp/app/models/cache_sweepers/
> company_cache_observer.rb:5:in `<class:CompanyCacheObserver>'
> /Users/nico/Rails/myapp/app/models/cache_sweepers/
> company_cache_observer.rb:1:in `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `block in require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:225:in `load_dependency'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:348:in `require_or_load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:489:in `load_missing_constant'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:181:in `block in const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:179:in `const_missing'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/aws-s3-0.6.2/lib/aws/s3/
> extensions.rb:206:in `const_missing_from_s3_library'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/inflector/methods.rb:124:in `block in constantize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/inflector/methods.rb:123:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/inflector/methods.rb:123:in `constantize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/core_ext/string/inflections.rb:43:in `constantize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activemodel-3.1.1/lib/
> active_model/observing.rb:86:in `instantiate_observer'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activemodel-3.1.1/lib/
> active_model/observing.rb:59:in `block in instantiate_observers'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activemodel-3.1.1/lib/
> active_model/observing.rb:59:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activemodel-3.1.1/lib/
> active_model/observing.rb:59:in `instantiate_observers'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/railtie.rb:92:in `block (2 levels) in <class:Railtie>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:36:in `instance_eval'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:36:in `execute_hook'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:26:in `on_load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activerecord-3.1.1/lib/
> active_record/railtie.rb:91:in `block in <class:Railtie>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:34:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:34:in `execute_hook'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:43:in `block in run_load_hooks'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:42:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/lazy_load_hooks.rb:42:in `run_load_hooks'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> application/finisher.rb:56:in `block in <module:Finisher>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> initializable.rb:30:in `instance_exec'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> initializable.rb:30:in `run'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> initializable.rb:55:in `block in run_initializers'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> initializable.rb:54:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> initializable.rb:54:in `run_initializers'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> application.rb:96:in `initialize!'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> railtie/configurable.rb:30:in `method_missing'
> /Users/nico/Rails/myapp/config/environment.rb:6:in `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `block in require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:223:in `block in load_dependency'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:640:in `new_constants_in'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:223:in `load_dependency'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/activesupport-3.1.1/lib/
> active_support/dependencies.rb:240:in `require'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> application.rb:83:in `require_environment!'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/railties-3.1.1/lib/rails/
> application.rb:193:in `block (2 levels) in initialize_tasks'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `block in execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:158:in `block in invoke_with_call_chain'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:151:in `invoke_with_call_chain'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:144:in `invoke'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/
> sprockets/assets.rake:89:in `block (2 levels) in <top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `block in execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:158:in `block in invoke_with_call_chain'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:151:in `invoke_with_call_chain'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:176:in `block in invoke_prerequisites'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:174:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:174:in `invoke_prerequisites'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:157:in `block in invoke_with_call_chain'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:151:in `invoke_with_call_chain'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:144:in `invoke'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/
> sprockets/assets.rake:56:in `block (3 levels) in <top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `block in execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:158:in `block in invoke_with_call_chain'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:151:in `invoke_with_call_chain'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:144:in `invoke'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:116:in `invoke_task'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `block (2 levels) in top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `block in top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:133:in `standard_exception_handling'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:88:in `top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:66:in `block in run'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:133:in `standard_exception_handling'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:63:in `run'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/bin/rake:33:in
> `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/bin/rake:19:in `load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/bin/rake:19:in `<main>'
> Tasks: TOP => environment
> rake aborted!
> Command failed with status (1): [/Users/nico/.rvm/rubies/ruby-1.9.2-
> p290/bi...]
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils.rb:53:in `block in create_shell_runner'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils.rb:45:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils.rb:45:in `sh'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils_ext.rb:39:in `sh'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils.rb:80:in `ruby'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> file_utils_ext.rb:39:in `ruby'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/
> sprockets/assets.rake:9:in `ruby_rake_task'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/
> sprockets/assets.rake:17:in `invoke_or_reboot_rake_task'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/actionpack-3.1.1/lib/
> sprockets/assets.rake:25:in `block (2 levels) in <top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `call'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:205:in `block in execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:200:in `execute'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:158:in `block in invoke_with_call_chain'
> /Users/nico/.rvm/rubies/ruby-1.9.2-p290/lib/ruby/1.9.1/monitor.rb:
> 201:in `mon_synchronize'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:151:in `invoke_with_call_chain'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> task.rb:144:in `invoke'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:116:in `invoke_task'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `block (2 levels) in top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `each'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:94:in `block in top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:133:in `standard_exception_handling'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:88:in `top_level'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:66:in `block in run'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:133:in `standard_exception_handling'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/lib/rake/
> application.rb:63:in `run'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/gems/rake-0.9.2.2/bin/rake:33:in
> `<top (required)>'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/bin/rake:19:in `load'
> /Users/nico/.rvm/gems/ruby-1.9.2-p290/bin/rake:19:in `<main>'
> Tasks: TOP => assets:precompile
> 
> 
> -- 
> You received this message because you are subscribed to the Google Groups 
> "Thinking Sphinx" 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/thinking-sphinx?hl=en.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Thinking Sphinx" 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/thinking-sphinx?hl=en.

Reply via email to