Changeset 8851
- Timestamp:
- 02/10/08 19:15:32 (5 months ago)
- Files:
-
- trunk/activesupport/CHANGELOG (modified) (1 diff)
- trunk/activesupport/lib/active_support/time_with_zone.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/activesupport/CHANGELOG
r8850 r8851 1 1 *SVN* 2 3 * Pruning unneeded TimeWithZone#change_time_zone_to_current [Geoff Buesing] 2 4 3 5 * Time#zone=, #in_time_zone and #change_time_zone accept a Duration [Geoff Buesing] trunk/activesupport/lib/active_support/time_with_zone.rb
r8732 r8851 41 41 def change_time_zone(new_zone) 42 42 time.change_time_zone(new_zone) 43 end44 45 # Changes the time zone to Time.zone without converting the time46 def change_time_zone_to_current47 time.change_time_zone_to_current48 43 end 49 44