我有水木清華這樣在我的Gemfile包括資產和區域設置成創業板的Rails 3.2
gem 'plugin', :git => 'git://plugin.git'
而且我想添加一些資產和區域設置在我的插件,所以我必須pathes添加到Rails ::引擎配置。所以,我有水木清華這樣在我init.rb
I18n.load_path += Dir[File.join(File.expand_path(File.dirname(__FILE__)), 'locales', '*.yml')]
Rails.application.class.config.assets.paths << File.join(File.expand_path(File.dirname(__FILE__)), 'assets')
這工作正常的語言環境,而不是讓我有資產異常(Rails.application.class.config爲零)。那麼做到這一點的正確方法是什麼?
花了我幾個小時弄清楚了這一點 – Willian 2013-11-02 19:09:57