diff options
| author | hukl <hukl@eight.local> | 2009-01-29 20:41:18 +0100 |
|---|---|---|
| committer | hukl <hukl@eight.local> | 2009-01-29 20:41:18 +0100 |
| commit | b298d3e8eeb10903bd4640dab7c11d0dc1be9d38 (patch) | |
| tree | d8d0a8449972a46e551be3b94e7dd02b6107b119 /config/environment.rb | |
initial import with edge rails included as a submodule
Diffstat (limited to 'config/environment.rb')
| -rw-r--r-- | config/environment.rb | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/config/environment.rb b/config/environment.rb new file mode 100644 index 0000000..c53ab90 --- /dev/null +++ b/config/environment.rb | |||
| @@ -0,0 +1,41 @@ | |||
| 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.0' 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 | # config.gem "bj" | ||
| 19 | # config.gem "hpricot", :version => '0.6', :source => "http://code.whytheluckystiff.net" | ||
| 20 | # config.gem "sqlite3-ruby", :lib => "sqlite3" | ||
| 21 | # config.gem "aws-s3", :lib => "aws/s3" | ||
| 22 | |||
| 23 | # Only load the plugins named here, in the order given (default is alphabetical). | ||
| 24 | # :all can be used as a placeholder for all plugins not explicitly named | ||
| 25 | # config.plugins = [ :exception_notification, :ssl_requirement, :all ] | ||
| 26 | |||
| 27 | # Skip frameworks you're not going to use. To use Rails without a database, | ||
| 28 | # you must remove the Active Record framework. | ||
| 29 | # config.frameworks -= [ :active_record, :active_resource, :action_mailer ] | ||
| 30 | |||
| 31 | # Activate observers that should always be running | ||
| 32 | # config.active_record.observers = :cacher, :garbage_collector, :forum_observer | ||
| 33 | |||
| 34 | # Set Time.zone default to the specified zone and make Active Record auto-convert to this zone. | ||
| 35 | # Run "rake -D time" for a list of tasks for finding time zone names. | ||
| 36 | config.time_zone = 'UTC' | ||
| 37 | |||
| 38 | # The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded. | ||
| 39 | # config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}')] | ||
| 40 | # config.i18n.default_locale = :de | ||
| 41 | end \ No newline at end of file | ||
