そのため、curl を使用して次のコードをダウンロードして実行すると、nil が生成され、何もプロンプトが表示されません。
str=gets
unless str.nil?
puts str
else
puts "gets produced nil"
end
使用中のコマンド (自分で試すことができます)
curl https://raw.github.com/gist/3077534/06ea1c27f7bed38408d2662671f29ea758e2e54b/gets_test.rb | ruby
これを行うためのより良い/より一般的な方法はありますか?