Problem with ActiveMessaging Generator - Doesn't Support Rails 3

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 -- reliable-msg
ActiveMessaging: adapter wmq not loaded: no such file to load -- wmq/wmq
ActiveMessaging: adapter beanstalk not loaded: no such file to load -- beanstalk-client
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

+5
source share
2 answers

What manual or blog article are you using to install?

http://code.google.com/p/activemessaging/wiki/Installation

Their wiki are not like the steps you take to install, as they recommend using it as a plugin.

EDIT:

Google Code Rails 3. , , , , rails generate .

, :

http://code.google.com/p/activemessaging/wiki/Configuration

+3

https://github.com/kookster/activemessaging repo gemfile

gem 'activemessaging', :git => 'git@github.com:kookster/activemessaging.git'

3 :

rails g active_messaging:install 
rails g active_messaging:processor YOUR_PROCESSOR

config/broker.yml( ) config/messaging.rb( ). .

. . gemfile:

gem 'stomp'
gem 'celluloid'
gem 'daemons'

!.)

+2

All Articles