我正在编写一个 Rails 3.2 生成器,并想使用Thor::Shell::Basic实例方法(例如ask
或yes?
),就像他们在官方 Rails 指南中的 Application Templates一样。
module MyNamespace
class ScaffoldGenerator < Rails::Generators::Base
source_root File.expand_path('../templates', __FILE__)
if yes? "Install MyGem?"
gem 'my_gem'
end
run 'bundle install'
end
end
这会给我一个NoMethodError: undefined method 'yes?' for MyNamespace::ScaffoldGenerator:Class
.
我想不出一种干净的方法来使这些实例方法可用 - 我已经从Rails::Generators::Base
.
编辑:
啊,这可能与托尔无关……我收到警告:
[WARNING] Could not load generator "generators/my_namespace/scaffold/scaffold_generator"
尽管我使用了生成器来生成生成器,但有些东西没有正确设置......