summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-01 14:10:51 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-12-01 14:10:51 +0000
commit96986a7a9019ff063e2ef3ecbe223c0b23c68d52 (patch)
treea73fb4e9eb7da22d78886b0d12f3fe81c6831682 /lib
parent8783c9ffcd22e5ab06896b8b13bd4beb6e797309 (diff)
* lib/optparse.rb (OptionParser::new): same as OptionParser#on but
returns new OptionParser::switch. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@3104 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib')
-rw-r--r--lib/optparse.rb30
1 files changed, 23 insertions, 7 deletions
diff --git a/lib/optparse.rb b/lib/optparse.rb
index c92af70c98..cbbd572bda 100644
--- a/lib/optparse.rb
+++ b/lib/optparse.rb
@@ -899,7 +899,7 @@ Default options, which never appear in option summary.
end
private :notwice
- def switch(*opts, &block)
+ def make_switch(*opts, &block)
short, long, nolong, style, pattern, conv, not_pattern, not_conv, not_style = [], [], []
ldesc, sdesc, desc, arg = [], [], []
default_style = Switch::NoArgument
@@ -1022,23 +1022,39 @@ Default options, which never appear in option summary.
cf. ((<OptionParser#switch>)).
=end #'#"#`#
+ def new(*opts, &block)
+ top.append(*(sw = make_switch(*opts, &block)))
+ sw[0]
+ end
def on(*opts, &block)
- top.append(*switch(*opts, &block))
+ new(*opts, &block)
self
end
- alias def_option on
+ alias def_option new
+ def new_head(*opts, &block)
+ top.prepend(*(sw = make_switch(*opts, &block)))
+ sw[0]
+ end
def on_head(*opts, &block)
- top.prepend(*switch(*opts, &block))
+ new_head(*opts, &block)
self
end
- alias def_head_option on_head
+ alias def_head_option new_head
+ def new_tail(*opts, &block)
+ base.append(*(sw = make_switch(*opts, &block)))
+ sw[0]
+ end
def on_tail(*opts, &block)
- base.append(*switch(*opts, &block))
+ new_tail(*opts, &block)
self
end
- alias def_tail_option on_tail
+ alias def_tail_option new_tail
+
+ def separator(string)
+ top.append(string, nil, nil)
+ end
=begin