ActiveMessaging生成器问题 - 不支持Rails 3

Fiv*_*ell 5 ruby-on-rails activemessaging ruby-on-rails-3

我有Activemessaging插件和rails3应用程序的问题.

我的gemfile是

gem 'sqlite3'
gem 'activemessaging', :git=>'git://github.com/spraints/activemessaging.git'
gem 'stomp'
gem 'daemons'
Run Code Online (Sandbox Code Playgroud)

之后,activemessaging文件夹出现在供应商中

捆绑安装后,我想用生成器创建处理器

 rails generate processor Test
Run Code Online (Sandbox Code Playgroud)

我看到这个输出:

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.
Run Code Online (Sandbox Code Playgroud)

我错过了什么 ?我应该一步一步地做些什么来使它有效.谢谢

nes*_*sur 3

您使用什么指南或博客文章进行安装?

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

他们的 wiki 与您安装的步骤不同,因为他们建议将其用作插件。

编辑:

在查看了 Google Code 上的活跃问题后,该项目尚不支持 Rails 3。至少,缺少主要功能,例如所有发电机都位于错误的位置,以致rails generate不会知道它们。

如果您想自己进行,则必须进行一系列手动配置:

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