aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 14:32:55 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-21 14:32:55 +0000
commit637642c8b85707779af45f80a104dd84be6a904d (patch)
treea2685224c9bb5e04c256bf27d11df6ac744b8d58 /activesupport
parent6ff54f70fdbddf2d068982e6ea4242b6b95104df (diff)
downloadrails-637642c8b85707779af45f80a104dd84be6a904d.tar.gz
rails-637642c8b85707779af45f80a104dd84be6a904d.tar.bz2
rails-637642c8b85707779af45f80a104dd84be6a904d.zip
Treat UTC times nicer
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@732 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/core_ext/time/calculations.rb28
-rw-r--r--activesupport/test/core_ext/time_ext_test.rb25
2 files changed, 20 insertions, 33 deletions
diff --git a/activesupport/lib/active_support/core_ext/time/calculations.rb b/activesupport/lib/active_support/core_ext/time/calculations.rb
index f5e9ab212c..f31c282434 100644
--- a/activesupport/lib/active_support/core_ext/time/calculations.rb
+++ b/activesupport/lib/active_support/core_ext/time/calculations.rb
@@ -11,9 +11,9 @@ module ActiveSupport #:nodoc:
# Returns a new Time where one or more of the elements have been changed according to the +options+ parameter. The time options
# (hour, minute, sec, usec) reset cascadingly, so if only the hour is passed, then minute, sec, and usec is set to 0. If the hour and
# minute is passed, then sec and usec is set to 0.
- def change(options, time_factory_method = :local)
+ def change(options)
::Time.send(
- time_factory_method,
+ self.utc? ? :utc : :local,
options[:year] || self.year,
options[:month] || self.month,
options[:mday] || self.mday,
@@ -37,21 +37,19 @@ module ActiveSupport #:nodoc:
end
# Returns a new Time representing the time a number of specified months ago
- def months_ago(months, time_factory_method = :local)
+ def months_ago(months)
if months >= self.month
- change({ :year => self.year - 1, :month => 12 }, time_factory_method).months_ago(months - self.month)
+ change(:year => self.year - 1, :month => 12).months_ago(months - self.month)
else
- change({ :year => self.year, :month => self.month - months }, time_factory_method)
+ change(:year => self.year, :month => self.month - months)
end
end
- def months_since(months, time_factory_method = :local)
+ def months_since(months)
if months + self.month > 12
- change({ :year => self.year + 1, :month => 1 }, time_factory_method).months_since(
- months - (self.month == 1 ? 12 : (self.month + 1))
- )
+ change(:year => self.year + 1, :month => 1).months_since(months - (self.month == 1 ? 12 : (self.month + 1)))
else
- change({ :year => self.year, :month => self.month + months }, time_factory_method)
+ change(:year => self.year, :month => self.month + months)
end
end
@@ -85,16 +83,6 @@ module ActiveSupport #:nodoc:
def tomorrow
self.since(1.day)
end
-
- # Returns a new Time of the current day at 9:00 (am) in the morning
- def in_the_morning(time_factory_method = :local)
- change({:hour => 9}, time_factory_method)
- end
-
- # Returns a new Time of the current day at 14:00 in the afternoon
- def in_the_afternoon(time_factory_method = :local)
- change({:hour => 14}, time_factory_method)
- end
end
end
end
diff --git a/activesupport/test/core_ext/time_ext_test.rb b/activesupport/test/core_ext/time_ext_test.rb
index ecad949c94..1918b01b23 100644
--- a/activesupport/test/core_ext/time_ext_test.rb
+++ b/activesupport/test/core_ext/time_ext_test.rb
@@ -62,23 +62,22 @@ class TimeExtCalculationsTest < Test::Unit::TestCase
assert_equal Time.local(2005,2,23,10,10,10), Time.local(2005,2,22,10,10,10).tomorrow
assert_equal Time.local(2005,3,2,10,10,10), Time.local(2005,2,28,10,10,10).tomorrow.tomorrow
end
-
- def test_in_the_morning
- assert_equal Time.local(2005,2,22,9), Time.local(2005,2,22,15,15,10).in_the_morning
- assert_equal Time.local(2005,2,22,9), Time.local(2005,2,22,3,15,10).in_the_morning
- end
-
- def test_in_the_morning
- assert_equal Time.local(2005,2,22,14), Time.local(2005,2,22,15,15,10).in_the_afternoon
- assert_equal Time.local(2005,2,22,14), Time.local(2005,2,22,3,15,10).in_the_afternoon
- end
def test_change
assert_equal Time.local(2006,2,22,15,15,10), Time.local(2005,2,22,15,15,10).change(:year => 2006)
assert_equal Time.local(2005,6,22,15,15,10), Time.local(2005,2,22,15,15,10).change(:month => 6)
assert_equal Time.local(2012,9,22,15,15,10), Time.local(2005,2,22,15,15,10).change(:year => 2012, :month => 9)
- assert_equal Time.local(2005,2,22,16), Time.local(2005,2,22,15,15,10).change(:hour => 16)
- assert_equal Time.local(2005,2,22,16,45), Time.local(2005,2,22,15,15,10).change(:hour => 16, :min => 45)
- assert_equal Time.local(2005,2,22,15,45), Time.local(2005,2,22,15,15,10).change(:min => 45)
+ assert_equal Time.local(2005,2,22,16), Time.local(2005,2,22,15,15,10).change(:hour => 16)
+ assert_equal Time.local(2005,2,22,16,45), Time.local(2005,2,22,15,15,10).change(:hour => 16, :min => 45)
+ assert_equal Time.local(2005,2,22,15,45), Time.local(2005,2,22,15,15,10).change(:min => 45)
+ end
+
+ def test_utc_change
+ assert_equal Time.utc(2006,2,22,15,15,10), Time.utc(2005,2,22,15,15,10).change(:year => 2006)
+ assert_equal Time.utc(2005,6,22,15,15,10), Time.utc(2005,2,22,15,15,10).change(:month => 6)
+ assert_equal Time.utc(2012,9,22,15,15,10), Time.utc(2005,2,22,15,15,10).change(:year => 2012, :month => 9)
+ assert_equal Time.utc(2005,2,22,16), Time.utc(2005,2,22,15,15,10).change(:hour => 16)
+ assert_equal Time.utc(2005,2,22,16,45), Time.utc(2005,2,22,15,15,10).change(:hour => 16, :min => 45)
+ assert_equal Time.utc(2005,2,22,15,45), Time.utc(2005,2,22,15,15,10).change(:min => 45)
end
end \ No newline at end of file