为Rails 3转换ActionView :: Helpers :: AssetTagHelper :: ASSETS_DIR?

时间:2011-08-23 17:36:26

标签: ruby-on-rails ruby-on-rails-3

我有一个我想要使用的插件,其中包含以下行:

PATH_TO_ASSETS = ActionView::Helpers::AssetTagHelper::ASSETS_DIR + File::SEPARATOR

这现在犯了错误:

const_missing': uninitialized constant ActionView::Helpers::AssetTagHelper::ASSETS_DIR (NameError)

知道我如何才能使用Rails 3吗?感谢

1 个答案:

答案 0 :(得分:3)

ASSETS_DIR已在Rails 3中删除。如果Rails.public_path未定义,则会将其定义为'public'Rails.public_path

ActionController::Base.helpers.config.assets_dir似乎已被

取代