rename load_path to autoload_path to remove deprecation warning

This commit is contained in:
Reinier Balt 2010-09-28 17:29:17 +02:00
parent 513734dce0
commit 012a5929e1

View file

@ -19,7 +19,7 @@ Encoding.default_external = Encoding::UTF_8 if RUBY_VERSION > "1.9"
Rails::Initializer.run do |config|
# Skip frameworks you're not going to use
# config.frameworks -= [ :action_web_service, :action_mailer ]
config.load_paths += %W( #{RAILS_ROOT}/app/apis )
config.autoload_paths += %W( #{RAILS_ROOT}/app/apis )
config.gem "highline"
config.gem "RedCloth"