如何在rake任务中调用ActiveSupport方法?

发布于 2024-09-16 12:19:11 字数 508 浏览 6 评论 0原文

这就是我正在尝试的:

require "active_support"

desc "test"
task :foo => [:environment] do
  parse(:categories) do |hash|
    # cleanup name
    hash[:name] = titlecase(hash[:name])
    # ...
  end
end

这是我收到的错误:

未定义方法`titlecase' main:Object

我也尝试过:

ActiveSupport::Inflector::titlecase(hash[:name])

导致此错误:

未定义方法“titlecase”ActiveSupport::Inflector:Module

This is what I'm trying:

require "active_support"

desc "test"
task :foo => [:environment] do
  parse(:categories) do |hash|
    # cleanup name
    hash[:name] = titlecase(hash[:name])
    # ...
  end
end

This is the error I'm getting:

undefined method `titlecase' main:Object

I've also tried:

ActiveSupport::Inflector::titlecase(hash[:name])

Results in this error:

undefined method `titlecase' ActiveSupport::Inflector:Module

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

森林迷了鹿 2024-09-23 12:19:11

尝试

hash[:name] = hash[:name].titlecase

而不是你正在尝试的事情。它对我有用。

try

hash[:name] = hash[:name].titlecase

instead of what you are trying. it worked for me.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文