I have a problem with the Activemessaging plugin and rails3.
My gemfile
gem 'sqlite3'
gem 'activemessaging', :git=>'git://github.com/spraints/activemessaging.git'
gem 'stomp'
gem 'daemons'
After that, the activemessaging folder appeared in the provider
After installing the package, I want to create a processor with a generator
rails generate processor Test
And I see this output:
ActiveMessaging: adapter reliable_msg not loaded: no such file to load
ActiveMessaging: adapter wmq not loaded: no such file to load
ActiveMessaging: adapter beanstalk not loaded: no such file to load
ActiveMessaging: no '/home/ruby/myapp/script/config/messaging.rb' file to load
ActiveMessaging: Loading script/app/processors/application.rb
Rails available: Adding dispatcher prepare callback.
ActiveMessaging: no '/home/ruby/myapp/script/config/messaging.rb' file to load
Could not find generator processor.
What did I miss? What should I do step by step to make it work. Thanks you
source
share