]> git.openstreetmap.org Git - rails.git/blob - config/environment.rb
Link to help.openstreetmap.org from the sidebar
[rails.git] / config / environment.rb
1 # Be sure to restart your server when you modify this file
2
3 # Specifies gem version of Rails to use when vendor/rails is not present
4 RAILS_GEM_VERSION = '2.3.8' unless defined? RAILS_GEM_VERSION
5
6 # Bootstrap the Rails environment, frameworks, and default configuration
7 require File.join(File.dirname(__FILE__), 'boot')
8
9 Rails::Initializer.run do |config|
10   # Settings in config/environments/* take precedence over those specified here.
11   # Application configuration should go into files in config/initializers
12   # -- all .rb files in that directory are automatically loaded.
13
14   # Add additional load paths for your own custom dirs
15   # config.load_paths += %W( #{RAILS_ROOT}/extras )
16
17   # Specify gems that this application depends on and have them installed with rake gems:install
18   unless  STATUS == :database_offline
19     config.gem 'composite_primary_keys', :version => '2.2.2'
20   end
21   config.gem 'libxml-ruby', :version => '>= 1.1.1', :lib => 'libxml'
22   config.gem 'rmagick', :lib => 'RMagick'
23   config.gem 'oauth', :version => '>= 0.3.6'
24   config.gem 'httpclient'
25   config.gem 'SystemTimer', :version => '>= 1.1.3', :lib => 'system_timer'
26   config.gem 'sanitize'
27   config.gem 'i18n', :version => '>= 0.4.1'
28
29   # Only load the plugins named here, in the order given (default is alphabetical).
30   # :all can be used as a placeholder for all plugins not explicitly named
31   # config.plugins = [ :exception_notification, :ssl_requirement, :all ]
32  
33   # Skip frameworks you're not going to use. To use Rails without a database,
34   # you must remove the Active Record framework.
35   if STATUS == :database_offline
36     config.frameworks -= [ :active_record ]
37     config.eager_load_paths = []
38   end
39
40   # Activate observers that should always be running
41   config.active_record.observers = :spam_observer
42
43   # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
44   # Run "rake -D time" for a list of tasks for finding time zone names.
45   config.time_zone = 'UTC'
46
47   # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
48   # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')]
49   # config.i18n.default_locale = :de
50
51   # Use SQL instead of Active Record's schema dumper when creating the test database.
52   # This is necessary if your schema can't be completely dumped by the schema dumper,
53   # like if you have constraints or database-specific column types
54   config.active_record.schema_format = :sql
55 end