2005-11-02 06:34:07 +01:00
|
|
|
# Bootstrap the Rails environment, frameworks, and default configuration
|
|
|
|
require File.join(File.dirname(__FILE__), 'boot')
|
2005-08-02 10:56:09 +02:00
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
Rails::Initializer.run do |config|
|
|
|
|
# Skip frameworks you're not going to use
|
|
|
|
config.frameworks -= [ :action_web_service, :action_mailer ]
|
2005-08-02 10:56:09 +02:00
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
# Use the database for sessions instead of the file system
|
|
|
|
# (create the session table with 'rake create_sessions_table')
|
2007-02-08 23:01:36 +01:00
|
|
|
#config.action_controller.session_store = :active_record_store
|
2005-08-02 10:56:09 +02:00
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
# Enable page/fragment caching by setting a file-based store
|
|
|
|
# (remember to create the caching directory and make it readable to the application)
|
2007-01-18 20:31:07 +01:00
|
|
|
#config.action_controller.fragment_cache_store = :file_store, "#{RAILS_ROOT}/cache"
|
2005-01-15 21:26:54 +01:00
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
# Activate observers that should always be running
|
2005-11-02 08:34:11 +01:00
|
|
|
config.active_record.observers = :page_observer
|
2005-03-25 20:11:41 +01:00
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
# Use Active Record's schema dumper instead of SQL when creating the test database
|
|
|
|
# (enables use of different database adapters for development and test environments)
|
2007-04-08 21:37:47 +02:00
|
|
|
config.active_record.schema_format = :sql
|
2005-04-04 08:48:42 +02:00
|
|
|
|
2007-01-17 13:26:46 +01:00
|
|
|
config.load_paths << "#{RAILS_ROOT}/vendor/plugins/sqlite3-ruby"
|
2005-01-15 21:26:54 +01:00
|
|
|
end
|
|
|
|
|
2005-11-02 06:34:07 +01:00
|
|
|
# Instiki-specific configuration below
|
2005-08-02 10:56:09 +02:00
|
|
|
require_dependency 'instiki_errors'
|
2007-01-17 22:00:17 +01:00
|
|
|
|
|
|
|
require 'jcode'
|