Sha256: 2477db839510c65ebb1ffee4920867d8fc2df130cb8bf2bea7b0355dae2e045f
Contents?: true
Size: 632 Bytes
Versions: 2
Compression:
Stored size: 632 Bytes
Contents
$KCODE = 'UTF8' # Move this to application.rb if you want it to be reloadable in dev mode. Merb::Router.prepare do |r| r.match('/').to(:controller => 'foo', :action =>'index') r.default_routes end 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] = '<%= SHA1.new(rand(100000000000).to_s).to_s %>', c[:exception_details] = true, c[:reload_classes] = true, c[:reload_time] = 0.5 }
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
merb-gen-0.9.6 | lib/generators/templates/application/merb_flat/config/init.rb |
merb-gen-0.9.7 | lib/generators/templates/application/merb_flat/config/init.rb |