I keep seeing two different config file naming conventions. One with an app name explicitly stated and another without (the default).
SomeApp::Application.configure do SomeApp::Application.config.assets.precompile += %w( someManifest.css.scss ) but the default is this
Rails.application.configure do Rails.application.config.assets.precompile += %w( someManifest.css.scss ) Is there a difference? The default seems to work...so why is the other option there?