Sha256: 5de440cd49a541225e3a127e26421711324498274711c0a7ed84fb0038af474d

Contents?: true

Size: 650 Bytes

Versions: 3

Compression:

Stored size: 650 Bytes

Contents

# Add your own ruby code here for app specific stuff. This file gets loaded
# after the framework is loaded.
puts "Started merb_init.rb ..."

# Your app's dependencies, including your database layer (if any) are defined
# in config/dependencies.rb
require File.join(MERB_ROOT, 'config', 'dependencies')

# Here's where your controllers, helpers, and models, etc. get loaded.  If you
# need to change the order of things, just move the call to 'load_application'
# around this file.
puts "Loading Application..."
Merb::Server.load_application

# Load environment-specific configuration
require File.join(MERB_ROOT, 'config', 'environments', MERB_ENV)

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
merb-0.4.0 app_generators/merb/templates/config/merb_init.rb
merb-0.4.1 app_generators/merb/templates/config/merb_init.rb
merb-0.4.2 app_generators/merb/templates/config/merb_init.rb