class Rails::Application

def initialize!(group = :default) # :nodoc:

:nodoc:
group is :default
Initialize the application passing the given group. By default, the
def initialize!(group = :default) # :nodoc:
  raise "Application has been already initialized." if @initialized
  run_initializers(group, self)
  @initialized = true
  self
end