Sha256: 06932f64d645b4158c372dbc2cb6b1e7e0ca184da346fd4bc92651482ac4c239
Contents?: true
Size: 745 Bytes
Versions: 2
Compression:
Stored size: 745 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::BootLoader.load_application # Load environment-specific configuration environment_config = File.join(Merb.root, 'config', 'environments', Merb.environment + '.rb') require environment_config if File.exist?(environment_config)
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
merb-0.5.2 | app_generators/merb/templates/config/merb_init.rb |
merb-0.5.3 | app_generators/merb/templates/config/merb_init.rb |