Sha256: 0a32f399b8172560fccd679f063ed8c4fd1cc0f3283de9d88887255ff1f4284a
Contents?: true
Size: 782 Bytes
Versions: 15
Compression:
Stored size: 782 Bytes
Contents
# Load the merb_global from current tree Gem.clear_paths Gem.path.unshift((Pathname(__FILE__).dirname + '../../../pkg').expand_path) $LOAD_PATH.unshift((Pathname(__FILE__).dirname + '../../../lib').expand_path) Merb::Router.prepare do |r| r.match('/').to(:controller => 'yaml_example', :action =>'index') r.default_routes end dependency 'merb_global' Merb::Config.use { |c| c[:environment] = 'production', c[:framework] = {}, c[:log_level] = 'debug', c[:use_mutex] = false, c[:session_store] = 'cookie', c[:session_id_key] = '_session_id', c[:session_secret_key] = 'ceb534866f8bb368f8e935b31604e45b818c6dd4', c[:exception_details] = true, c[:reload_classes] = true, c[:reload_time] = 0.5 }
Version data entries
15 entries across 15 versions & 3 rubygems