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
答案 0 :(得分:1)
尝试
hash[:name] = hash[:name].titlecase
而不是你正在尝试的。它对我有用。