Sha256: 3ef66f45fed2e6b14e21a3d2170e92d5a3559926bfe9dfbede5ad6aeb635f14c
Contents?: true
Size: 737 Bytes
Versions: 1
Compression:
Stored size: 737 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) require environment_config if File.exist?(environment_config)
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
merb-0.5.1 | app_generators/merb/templates/config/merb_init.rb |