From: Nobuyoshi Nakada Date: 2009-04-25T07:52:33+09:00 Subject: Re: ARGV, STDIN and gets Hi, At Sat, 25 Apr 2009 07:43:28 +0900, Joe Williams wrote in [ruby-talk:334959]: > I am running into an issue where I have a script that takes two command > line arguments and reads from stdin. It seems that gets is not getting > to stdin because it is hitting ARGV first Kernel#gets is not a method to read from stdin. Use $stdin.gets. -- Nobu Nakada