diff options
author | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-05 14:02:14 +0000 |
---|---|---|
committer | tadf <tadf@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2003-05-05 14:02:14 +0000 |
commit | 6154ce97a7915ac70326c007ee04a22fe5742e04 (patch) | |
tree | 8e1943ac59519bd7f142e72dfbfc88880ed69656 | |
parent | b65e3629dad9fba8f37202d3dc0103d9d08c1396 (diff) |
use values_at instead of select.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3757 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | sample/biorhythm.rb | 2 | ||||
-rw-r--r-- | sample/cal.rb | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +Mon May 5 22:57:07 2003 Tadayoshi Funaba <[email protected]> + + * sample/cal.rb: use values_at instead of select. + + * sample/biorhythm.rb: ditto. + Mon May 5 18:59:45 2003 WATANABE Hirofumi <[email protected]> * sample/test.rb: substitute 'select' with 'values_at'. diff --git a/sample/biorhythm.rb b/sample/biorhythm.rb index 74e615a289..c7e26c4fff 100644 --- a/sample/biorhythm.rb +++ b/sample/biorhythm.rb @@ -59,7 +59,7 @@ def getPosition(z) end def parsedate(s) - ParseDate::parsedate(s).select(0, 1, 2) + ParseDate::parsedate(s).values_at(0, 1, 2) end def name_of_week(date) diff --git a/sample/cal.rb b/sample/cal.rb index 0b2d9216ac..e8452349dd 100644 --- a/sample/cal.rb +++ b/sample/cal.rb @@ -84,7 +84,7 @@ end usage unless getopts('jmty', "c:#{$cc}") -y, m = ARGV.select(1, 0).compact.collect{|x| x.to_i} +y, m = ARGV.values_at(1, 0).compact.collect{|x| x.to_i} $OPT_y ||= (y and not m) to = Date.today |