我想改变我的工厂的位置,如何让Rails在生成时知道新的位置?

发布于 2024-12-23 18:11:40 字数 232 浏览 1 评论 0原文

我正在使用 rails 3.2.0.rc1factory_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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居者 2024-12-30 18:11:40

factory_girl_rails 使用规格/工厂路径配置应用程序生成器。请参阅

https://github.com/thoughtbot/factory_girl_rails/ blob/master/lib/factory_girl_rails/railtie.rb#L11

您可以在初始化程序中覆盖它:

YourAppName::Application.config.app_generators do |g|
  g.fixture_replacement :factory_girl, :dir => 'factories'
end

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:

YourAppName::Application.config.app_generators do |g|
  g.fixture_replacement :factory_girl, :dir => 'factories'
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文