summaryrefslogtreecommitdiffstats
path: root/lib/date.rb
diff options
context:
space:
mode:
authortadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 11:27:56 +0000
committertadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-09-10 11:27:56 +0000
commitf970f8e02bdf998614c1c6efcee1e3b0c5c6d3cf (patch)
tree3106cb7afc7f5e05621dcb2af28822f63c61d697 /lib/date.rb
parentef299848756a25dceac770d1591b67f3aac9ae66 (diff)
downloadruby-f970f8e02bdf998614c1c6efcee1e3b0c5c6d3cf.tar.gz
ruby-f970f8e02bdf998614c1c6efcee1e3b0c5c6d3cf.tar.xz
ruby-f970f8e02bdf998614c1c6efcee1e3b0c5c6d3cf.zip
updated based on date2 3.9.1.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10906 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/date.rb')
-rw-r--r--lib/date.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/date.rb b/lib/date.rb
index a8b8c5988..28491dea1 100644
--- a/lib/date.rb
+++ b/lib/date.rb
@@ -6,7 +6,7 @@
# Documentation: William Webber <william@williamwebber.com>
#
#--
-# $Id: date.rb,v 2.21 2006-08-19 22:38:12+09 tadf Exp $
+# $Id: date.rb,v 2.23 2006-09-09 22:44:21+09 tadf Exp $
#++
#
# == Overview
@@ -1139,7 +1139,7 @@ class Date
# date at each step.
def step(limit, step=1) # :yield: date
da = self
- op = [:-,:<=,:>=][step<=>0]
+ op = %w(- <= >=)[step <=> 0]
while da.__send__(op, limit)
yield da
da += step