Rails 3.1.1を使用しています。Rails 3のAPP_CONFIG ymlファイルで何が間違っていましたか?
<%= abort(APP_CONFIG[:site_url]) %> #returns: can't convert nil into String
:これはこれは私の私もそれを中止し、私のテンプレートで
site_url
を入れてみましたが、それはまだnilを返します
config/application.rb
require File.expand_path('../boot', __FILE__)
# load app_config.yml
require 'yaml'
APP_CONFIG = YAML.load(File.read(File.expand_path('../app_config.yml', __FILE__)))
require 'rails/all'
を剥奪されconfig/app_config.yml
development: &non_production_settings
site_url: http://localhost:3000
の私のYAMLファイルです
どうしたのですか?ありがとう!