Array#choiceの廃止
Array#choiceを廃止し、Array#sampleで統一する
case when RUBY_VERSION >= '1.9.1' # nothing when RUBY_VERSION == '1.8.7' class << Array def sample self.choice end end else raise 'not support Ruby version' end
逆に、Ruby1.9系への対応としてArray#choiceを加える方向で対応する
現状、Ruby1.9系に対するExerbレベルでのexe化が存在しないため
Ruby1.9系の場合、Array#choiceを追加定義する方向で修正完了
Array#choiceを廃止し、Array#sampleで統一する