Reading through the source in railties/lib/rails/paths.rb, I found
this:
module MyEngine
class Engine < Rails::Engine
config.after_initialize do
::AppName::Application.config.paths.vendor.plugins.push
File.expand_path('../../vendor/plugins', __FILE__)
end
end
end
Is that correct? If it is, then it begs the question, how do I access
the app configuration without directly referencing it's name
(::AppName)?