Class: MxxRu::Generators::ExtCMakeProject::Options
- Inherits:
-
Object
- Object
- MxxRu::Generators::ExtCMakeProject::Options
- Defined in:
- lib/mxx_ru/generators/ext-cmake-prj/g.rb
Overview
Instance Attribute Summary collapse
-
#output_file ⇒ Object
Name of output file (-o, –output-file).
-
#where ⇒ Object
Name of subfolder with CMakeLists.txt file.
Class Method Summary collapse
-
.parse(args, banner) ⇒ Object
Parsing command-line arguments and returning Options instance.
Instance Attribute Details
#output_file ⇒ Object
Name of output file (-o, –output-file). nil if missing.
53 54 55 |
# File 'lib/mxx_ru/generators/ext-cmake-prj/g.rb', line 53 def output_file @output_file end |
#where ⇒ Object
Name of subfolder with CMakeLists.txt file
51 52 53 |
# File 'lib/mxx_ru/generators/ext-cmake-prj/g.rb', line 51 def where @where end |
Class Method Details
.parse(args, banner) ⇒ Object
Parsing command-line arguments and returning Options instance.
Calls exit(1) if –help present in args.
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 |
# File 'lib/mxx_ru/generators/ext-cmake-prj/g.rb', line 59 def Options.parse( args, ) parser = OptionParser.new result = Options.new parser. = parser.on( '-w', '--where SUBFOLDER', 'Name of subfolder with CMakeLists.txt' ) do |p| result.where = p end parser.on( '-o', '--output-file FILE', 'Output file name' ) do |p| result.output_file = p end parser.on_tail( '-h', '--help', 'Show this message' ) do puts parser exit(1) end parser.parse!(args) result end |