Top Level Namespace
Defined Under Namespace
Modules: FiveApples, OpenUI5 Classes: Breeder, Cultivar, ODataFiveApples, Parentage, ParentageType, Photo, String
Constant Summary collapse
- OPTS =
GetoptLong.new( [ '--help', '-h', GetoptLong::NO_ARGUMENT ], [ '--one_way', '-o', GetoptLong::NO_ARGUMENT ], [ '--use_cdn', '-c', GetoptLong::NO_ARGUMENT ], [ '--libdir', '-I', GetoptLong::REQUIRED_ARGUMENT ], [ '--test', '-t', GetoptLong::NO_ARGUMENT ] )
Instance Method Summary collapse
Instance Method Details
#read_opts ⇒ Object
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/options.rb', line 11 def read_opts = {} [:one_way] = false [:libdir_add] = nil [:use_cdn] = false OPTS.each do |opt, arg| case opt when '--help' puts <<-EOF Usage: fiveapples [OPTIONS] -h, --help Display this help message. -o, --one_way Serves with OneWay binding and without $batch. Default is TwoWay binding with $batch -c, --use_cdn Use the openui5 CDN instead of local resource files. Default is using local resources -I, --libdir LIBDIR Include LIBDIR in the search path for required modules. EOF exit 0 when '--one_way' [:one_way] = true when '--use_cdn' [:use_cdn] = true when '--test' [:role] = :test when '--libdir' [:libdir_add] = arg if arg $LOAD_PATH.unshift(arg) unless $LOAD_PATH.include?(arg) end end end end |