diff options
Diffstat (limited to 'sample')
-rw-r--r-- | sample/biorhythm.rb | 2 | ||||
-rw-r--r-- | sample/cal.rb | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/sample/biorhythm.rb b/sample/biorhythm.rb index 74e615a28..c7e26c4ff 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 0b2d9216a..e8452349d 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 |