I\'m rather new to Ruby, and today I wrote an application which you can pass arguments to via ARGV. But inside my application, I want to be able to use \"gets\". Problem is,
You should be using STDIN.gets not Kernel#gets.
STDIN.gets
Kernel#gets
Some reference.