这就是我正在尝试的:
require "active_support"
desc "test"
task :foo => [:environment] do
parse(:categories) do |hash|
# cleanup name
hash[:name] = titlecase(hash[:name])
# ...
end
end
这是我得到的错误:
未定义的方法“titlecase”主要:对象
我也试过:
ActiveSupport::Inflector::titlecase(hash[:name])
导致此错误:
未定义的方法 `titlecase' ActiveSupport::Inflector:Module