environment.rb 2.1 KB
Newer Older
1
# Be sure to restart your web server when you modify this file.
2

3 4 5
# Uncomment below to force Rails into production mode when 
# you don't control web/app server and can't set it the proper way
# ENV['RAILS_ENV'] ||= 'production'
6

7
# Specifies gem version of Rails to use when vendor/rails is not present
8
<%= '# ' if freeze %>RAILS_GEM_VERSION = '<%= Rails::VERSION::STRING %>' unless defined? RAILS_GEM_VERSION
9

10 11
# Bootstrap the Rails environment, frameworks, and default configuration
require File.join(File.dirname(__FILE__), 'boot')
12

13
Rails::Initializer.run do |config|
14 15
  # Settings in config/environments/* take precedence those specified here
  
16
  # Skip frameworks you're not going to use (only works if using vendor/rails)
17 18 19
  # config.frameworks -= [ :action_web_service, :action_mailer ]

  # Add additional load paths for your own custom dirs
20
  # config.load_paths += %W( #{RAILS_ROOT}/extras )
21

22
  # Force all environments to use the same logger level 
23 24
  # (by default production uses :info, the others :debug)
  # config.log_level = :debug
25

26
  # Use the database for sessions instead of the file system
27
  # (create the session table with 'rake db:sessions:create')
28
  # config.action_controller.session_store = :active_record_store
29

30 31 32 33
  # Use SQL instead of Active Record's schema dumper when creating the test database.
  # This is necessary if your schema can't be completely dumped by the schema dumper, 
  # like if you have constraints or database-specific column types
  # config.active_record.schema_format = :sql
34

35
  # Activate observers that should always be running
36
  # config.active_record.observers = :cacher, :garbage_collector
37

38 39
  # Make Active Record use UTC-base instead of local time
  # config.active_record.default_timezone = :utc
40
  
41
  # See Rails::Configuration for more options
42 43
end

44 45 46 47 48 49 50 51 52
# Add new inflection rules using the following format 
# (all these examples are active by default):
# Inflector.inflections do |inflect|
#   inflect.plural /^(ox)$/i, '\1en'
#   inflect.singular /^(ox)en/i, '\1'
#   inflect.irregular 'person', 'people'
#   inflect.uncountable %w( fish sheep )
# end

53
# Include your application configuration below