我想改变我的工厂的位置,如何让Rails在生成时知道新的位置?
我正在使用 rails 3.2.0.rc1
和 factory_girl_rails
我希望工厂的位置为 RAILS_ROOT/factories
而不是 RAILS_ROOT/specs/factories
当我使用 Rails 生成器时,我知道它会创建默认工厂,我如何通知 Rails 应该将它们放置在哪里?
I'm using rails 3.2.0.rc1
and factory_girl_rails
I want the location of my factories to be RAILS_ROOT/factories
instead of RAILS_ROOT/specs/factories
When I use the Rails generators, I know it creates default factories, how can I inform Rails where it should place them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
factory_girl_rails 使用规格/工厂路径配置应用程序生成器。请参阅
https://github.com/thoughtbot/factory_girl_rails/ blob/master/lib/factory_girl_rails/railtie.rb#L11
您可以在初始化程序中覆盖它:
factory_girl_rails configures the app generators with the specs/factories path. See
https://github.com/thoughtbot/factory_girl_rails/blob/master/lib/factory_girl_rails/railtie.rb#L11
You can override this in an initializer: