Class: Example::Arguments
- Inherits:
-
Object
- Object
- Example::Arguments
- Defined in:
- examples/example.rb
Overview
Command-line option parser
Instance Attribute Summary collapse
-
#account ⇒ Object
readonly
Returns the value of attribute account.
-
#auth_level ⇒ Object
readonly
Returns the value of attribute auth_level.
-
#eplf ⇒ Object
readonly
Returns the value of attribute eplf.
-
#interface ⇒ Object
readonly
Returns the value of attribute interface.
-
#password ⇒ Object
readonly
Returns the value of attribute password.
-
#port ⇒ Object
readonly
Returns the value of attribute port.
-
#read_only ⇒ Object
readonly
Returns the value of attribute read_only.
-
#tls ⇒ Object
readonly
Returns the value of attribute tls.
-
#user ⇒ Object
readonly
Returns the value of attribute user.
Instance Method Summary collapse
-
#initialize(argv) ⇒ Arguments
constructor
A new instance of Arguments.
Constructor Details
#initialize(argv) ⇒ Arguments
Returns a new instance of Arguments.
26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'examples/example.rb', line 26 def initialize(argv) @interface = 'localhost' @tls = :explicit @port = 0 @auth_level = 'password' @user = ENV['LOGNAME'] @password = '' @account = '' op = option_parser op.parse!(argv) rescue OptionParser::ParseError => e $stderr.puts e exit(1) end |
Instance Attribute Details
#account ⇒ Object (readonly)
Returns the value of attribute account.
16 17 18 |
# File 'examples/example.rb', line 16 def account @account end |
#auth_level ⇒ Object (readonly)
Returns the value of attribute auth_level.
17 18 19 |
# File 'examples/example.rb', line 17 def auth_level @auth_level end |
#eplf ⇒ Object (readonly)
Returns the value of attribute eplf.
18 19 20 |
# File 'examples/example.rb', line 18 def eplf @eplf end |
#interface ⇒ Object (readonly)
Returns the value of attribute interface.
19 20 21 |
# File 'examples/example.rb', line 19 def interface @interface end |
#password ⇒ Object (readonly)
Returns the value of attribute password.
20 21 22 |
# File 'examples/example.rb', line 20 def password @password end |
#port ⇒ Object (readonly)
Returns the value of attribute port.
21 22 23 |
# File 'examples/example.rb', line 21 def port @port end |
#read_only ⇒ Object (readonly)
Returns the value of attribute read_only.
22 23 24 |
# File 'examples/example.rb', line 22 def read_only @read_only end |
#tls ⇒ Object (readonly)
Returns the value of attribute tls.
23 24 25 |
# File 'examples/example.rb', line 23 def tls @tls end |
#user ⇒ Object (readonly)
Returns the value of attribute user.
24 25 26 |
# File 'examples/example.rb', line 24 def user @user end |