diff options
author | Geoff Buesing <gbuesing@gmail.com> | 2008-03-17 02:54:23 +0000 |
---|---|---|
committer | Geoff Buesing <gbuesing@gmail.com> | 2008-03-17 02:54:23 +0000 |
commit | 895487c1224bf85047f317e7bddf4f2abdea0822 (patch) | |
tree | ab133363378ef844d4dd60e31d3fba3e170ed757 /activesupport/lib/active_support | |
parent | 77ee522bf6c97352485fad3b72866f7ab424ecaf (diff) | |
download | rails-895487c1224bf85047f317e7bddf4f2abdea0822.tar.gz rails-895487c1224bf85047f317e7bddf4f2abdea0822.tar.bz2 rails-895487c1224bf85047f317e7bddf4f2abdea0822.zip |
TimeWithZone responds to Ruby 1.9 weekday-named query methods
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@9041 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r-- | activesupport/lib/active_support/time_with_zone.rb | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/activesupport/lib/active_support/time_with_zone.rb b/activesupport/lib/active_support/time_with_zone.rb index 68585e8273..10c3543d6e 100644 --- a/activesupport/lib/active_support/time_with_zone.rb +++ b/activesupport/lib/active_support/time_with_zone.rb @@ -153,6 +153,12 @@ module ActiveSupport alias_method :mday, :day alias_method :month, :mon + %w(sunday? monday? tuesday? wednesday? thursday? friday? saturday?).each do |name| + define_method(name) do + time.__send__(name) + end + end unless RUBY_VERSION < '1.9' + def to_a time.to_a[0, 8].push(dst?, zone) end |