コマンドライン引数を取得するためにはARGVを使用します。
sample.rb
ARGV.each do |arg| puts arg end
出力例
$ ruby sample.rb 1 2 3 hoge 1 2 3 hoge