D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
proc
/
thread-self
/
root
/
usr
/
share
/
ruby
/
optparse
/
Filename :
ac.rb
back
Copy
# frozen_string_literal: false require 'optparse' class OptionParser::AC < OptionParser private def _check_ac_args(name, block) unless /\A\w[-\w]*\z/ =~ name raise ArgumentError, name end unless block raise ArgumentError, "no block given", ParseError.filter_backtrace(caller) end end def _ac_arg_enable(prefix, name, help_string, block) _check_ac_args(name, block) sdesc = [] ldesc = ["--#{prefix}-#{name}"] desc = [help_string] q = name.downcase enable = Switch::NoArgument.new(nil, proc {true}, sdesc, ldesc, nil, desc, block) disable = Switch::NoArgument.new(nil, proc {false}, sdesc, ldesc, nil, desc, block) top.append(enable, [], ["enable-" + q], disable, ['disable-' + q]) enable end public def ac_arg_enable(name, help_string, &block) _ac_arg_enable("enable", name, help_string, block) end def ac_arg_disable(name, help_string, &block) _ac_arg_enable("disable", name, help_string, block) end def ac_arg_with(name, help_string, &block) _check_ac_args(name, block) sdesc = [] ldesc = ["--with-#{name}"] desc = [help_string] q = name.downcase with = Switch::PlacedArgument.new(*search(:atype, String), sdesc, ldesc, nil, desc, block) without = Switch::NoArgument.new(nil, proc {}, sdesc, ldesc, nil, desc, block) top.append(with, [], ["with-" + q], without, ['without-' + q]) with end end
Name
Size
Last Modified
Owner
Permissions
Actions
ac.rb
1.401
KB
April 05 2021 11:46:35
root
0644
date.rb
0.348
KB
April 05 2021 11:46:35
root
0644
kwargs.rb
0.396
KB
April 05 2021 11:46:35
root
0644
shellwords.rb
0.148
KB
April 05 2021 11:46:35
root
0644
time.rb
0.214
KB
April 05 2021 11:46:35
root
0644
uri.rb
0.128
KB
April 05 2021 11:46:35
root
0644
version.rb
2.013
KB
April 05 2021 11:46:35
root
0644
2017 © D7net | D704T team