Changeset 9097
- Timestamp:
- 03/26/08 21:01:30 (7 months ago)
- Files:
-
- trunk/railties/CHANGELOG (modified) (2 diffs)
- trunk/railties/environments/environment.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/railties/CHANGELOG
r9093 r9097 3 3 * Improve documentation. [Radar, Jan De Poorter, chuyeow, xaviershay, danger, miloops, Xavier Noria, Sunny Ripert] 4 4 5 * Added config.time_zone = 'UTC' as a commented-out option in the default environment.rb [Geoff Buesing] 6 7 * Adding rake tasks time:zones:all, time:zones:us and time:zones:local for finding time zone names for config.time_zone option [Geoff Buesing] 5 * Added config.time_zone = 'UTC' in the default environment.rb [Geoff Buesing] 6 7 * Added rake tasks time:zones:all, time:zones:us and time:zones:local for finding time zone names for config.time_zone option [Geoff Buesing] 8 9 * Add config.time_zone for configuring the default Time.zone value. #10982 [Geoff Buesing] 8 10 9 11 * Added support for installing plugins hosted at git repositories #11294 [danger] … … 11 13 * Fixed that script/generate would not look for plugin generators in plugin_paths #11000 [glv] 12 14 13 * Fix database rake tasks to work with charset/collation and show proper error messages on failure. Closes #11301 [matt] 14 15 * add a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)] 16 17 * Add config.time_zone for configuring the default Time.zone value. #10982 [Geoff Buesing] 15 * Fixed database rake tasks to work with charset/collation and show proper error messages on failure. Closes #11301 [matt] 16 17 * Added a -e/--export to script/plugin install, uses svn export. #10847 [jon@blankpad.net)] 18 18 19 19 * Reshuffle load order so that routes and observers are initialized after plugins and app initializers. Closes #10980 [rick] trunk/railties/environments/environment.rb
r9078 r9097 33 33 # config.log_level = :debug 34 34 35 # Make Time.zone default to the specified zone, and make ActiveRecord store time values 36 # in the database in UTC, and return them converted to the specified local zone. 37 # Run `rake -D time` for a list of tasks for finding time zone names. Uncomment to use default local time. 38 config.time_zone = 'UTC' 39 35 40 # Your secret key for verifying cookie session data integrity. 36 41 # If you change this key, all old sessions will become invalid! … … 54 59 # Activate observers that should always be running 55 60 # config.active_record.observers = :cacher, :garbage_collector 56 57 # Make Time.zone default to the specified zone, and make ActiveRecord store time values58 # in the database in UTC, and return them converted to the specified local zone.59 # Run `rake -D time` for a list of tasks for finding time zone names.60 # config.time_zone = 'UTC'61 61 end