Project

General

Profile

Actions

Bug #910

closed

optparse with regexp

Added by rubikitch (rubikitch .) over 15 years ago. Updated almost 13 years ago.

Status:
Closed
ruby -v:
Backport:
[ruby-dev:37515]

Description

=begin
optparseでオプション引数にマッチすべき正規表現を指定した場合の挙動が変わっています。

#!/usr/local/bin/ruby
require 'optparse'
opts = {}
ARGV.options do |o|
o.on("-T [level]", /^[0-4]$/) {|x| opts[:T] = x }
o.parse!
end
puts "opts=#{opts.inspect}"

$ ruby187p72 -v optparse-regexp.rb -T1
ruby 1.8.7 (2008-08-11 patchlevel 72) [i686-linux]
opts={:T=>"1"}
$ ruby19 -v optparse-regexp.rb -T1
ruby 1.9.1 (2008-12-20 revision 20892) [i686-linux]
opts={:T=>["1"]}
=end


Related issues 1 (0 open1 closed)

Related to Ruby 1.8 - Bug #909: optparse with regexpClosed12/20/2008Actions
Actions #1

Updated by yugui (Yuki Sonoda) over 15 years ago

  • Due date set to 12/24/2008
  • Category set to lib
  • Assignee set to nobu (Nobuyoshi Nakada)
  • Target version set to 1.9.1 Release Candidate

=begin

=end

Actions #2

Updated by nobu (Nobuyoshi Nakada) over 15 years ago

  • Status changed from Open to Closed

=begin
Bug #909 [ruby-dev:37514]と重複
=end

Actions #3

Updated by yugui (Yuki Sonoda) over 15 years ago

  • Status changed from Closed to Assigned

=begin
1.9ではまだ発生します。
=end

Actions #4

Updated by nobu (Nobuyoshi Nakada) over 15 years ago

  • Status changed from Assigned to Closed

=begin
r20902
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0Like0