Sha256: db05793293c25655fed50d3b8cc7c4025959eb9f1996145a048fac483899fbb2

Contents?: true

Size: 703 Bytes

Versions: 3

Compression:

Stored size: 703 Bytes

Contents

# Specify the root directory. This is required since there are multiple directories
# to load resources from. This directory will be used for the database logger, modes, etc.
Zen.root = __DIR__('../')

# Set the application's mode. Available modes are "dev" and "live"
Ramaze.options.mode  = :dev

# The session identifier to use for cookies.
Ramaze.options.session.key = 'zen.sid'

# Cache settings. These are turned off for the development server to make it easier
# to debug potential errors.
Ramaze::View.options.cache      = false
Ramaze::View.options.read_cache = false

# Use LRU instead of the memory cache as the latter leaks memory over time
Ramaze::Cache.options.session = Ramaze::Cache::LRU

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
zen-0.2.7 proto/app/config/config.rb
zen-0.2.6.1 proto/app/config/config.rb
zen-0.2.6 proto/app/config/config.rb