Class: GLI::Commands::RdocDocumentListener
- Inherits:
-
Object
- Object
- GLI::Commands::RdocDocumentListener
- Defined in:
- lib/gli/commands/rdoc_document_listener.rb
Instance Method Summary collapse
- #beginning ⇒ Object
-
#command(name, aliases, desc, long_desc, arg_name, arg_options) ⇒ Object
Gives you a command in the current context and creates a new context of this command.
- #commands ⇒ Object
-
#default_command(name) ⇒ Object
Gives you the name of the current command in the current context.
-
#end_command(name) ⇒ Object
Ends a command, and “pops” you back up one context.
- #end_commands ⇒ Object
- #end_options ⇒ Object
-
#ending ⇒ Object
Called when processing has completed.
-
#flag(name, aliases, desc, long_desc, default_value, arg_name, must_match, type) ⇒ Object
Gives you a flag in the current context.
-
#initialize(global_options, options, arguments, app) ⇒ RdocDocumentListener
constructor
A new instance of RdocDocumentListener.
- #options ⇒ Object
-
#program_desc(desc) ⇒ Object
Gives you the program description.
- #program_long_desc(desc) ⇒ Object
-
#switch(name, aliases, desc, long_desc, negatable) ⇒ Object
Gives you a switch in the current context.
-
#version(version) ⇒ Object
Gives you the program version.
Constructor Details
#initialize(global_options, options, arguments, app) ⇒ RdocDocumentListener
Returns a new instance of RdocDocumentListener.
7 8 9 10 11 12 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 7 def initialize(,,arguments,app) @app = app @io = File.new("#{app.exe_name}.rdoc",'w') @nest = '' @arg_name_formatter = GLI::Commands::HelpModules::ArgNameFormatter.new end |
Instance Method Details
#beginning ⇒ Object
14 15 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 14 def beginning end |
#command(name, aliases, desc, long_desc, arg_name, arg_options) ⇒ Object
Gives you a command in the current context and creates a new context of this command
84 85 86 87 88 89 90 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 84 def command(name,aliases,desc,long_desc,arg_name,) @io.puts "#{@nest}=== Command: <tt>#{([name] + aliases).join('|')} #{@arg_name_formatter.format(arg_name,,[])}</tt>" @io.puts String(desc).strip @io.puts @io.puts String(long_desc).strip @nest = "#{@nest}=" end |
#commands ⇒ Object
78 79 80 81 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 78 def commands @io.puts "#{@nest}=== Commands" @nest = "#{@nest}=" end |
#default_command(name) ⇒ Object
Gives you the name of the current command in the current context
98 99 100 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 98 def default_command(name) @io.puts "[Default Command] #{name}" unless name.nil? end |
#end_command(name) ⇒ Object
Ends a command, and “pops” you back up one context
93 94 95 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 93 def end_command(name) @nest.gsub!(/=$/,'') end |
#end_commands ⇒ Object
102 103 104 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 102 def end_commands @nest.gsub!(/=$/,'') end |
#end_options ⇒ Object
75 76 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 75 def end |
#ending ⇒ Object
Called when processing has completed
18 19 20 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 18 def ending @io.close end |
#flag(name, aliases, desc, long_desc, default_value, arg_name, must_match, type) ⇒ Object
Gives you a flag in the current context
48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 48 def flag(name,aliases,desc,long_desc,default_value,arg_name,must_match,type) invocations = ([name] + Array(aliases)).map { |_| add_dashes(_) }.join('|') usage = "#{invocations} #{arg_name || 'arg'}" @io.puts "#{@nest}=== #{usage}" @io.puts @io.puts String(desc).strip @io.puts @io.puts "[Default Value] #{default_value || 'None'}" @io.puts "[Must Match] #{must_match.to_s}" unless must_match.nil? @io.puts String(long_desc).strip @io.puts end |
#options ⇒ Object
39 40 41 42 43 44 45 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 39 def if @nest.size == 0 @io.puts "=== Global Options" else @io.puts "#{@nest}=== Options" end end |
#program_desc(desc) ⇒ Object
Gives you the program description
23 24 25 26 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 23 def program_desc(desc) @io.puts "== #{@app.exe_name} - #{desc}" @io.puts end |
#program_long_desc(desc) ⇒ Object
28 29 30 31 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 28 def program_long_desc(desc) @io.puts desc @io.puts end |
#switch(name, aliases, desc, long_desc, negatable) ⇒ Object
Gives you a switch in the current context
62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 62 def switch(name,aliases,desc,long_desc,negatable) if negatable name = "[no-]#{name}" if name.to_s.length > 1 aliases = aliases.map { |_| _.to_s.length > 1 ? "[no-]#{_}" : _ } end invocations = ([name] + aliases).map { |_| add_dashes(_) }.join('|') @io.puts "#{@nest}=== #{invocations}" @io.puts String(desc).strip @io.puts @io.puts String(long_desc).strip @io.puts end |
#version(version) ⇒ Object
Gives you the program version
34 35 36 37 |
# File 'lib/gli/commands/rdoc_document_listener.rb', line 34 def version(version) @io.puts "v#{version}" @io.puts end |