Sha256: 1ac383800f8e0ae6bdac29fbe05faa54e388dac7925b8628dec3fe0343d57af0
Contents?: true
Size: 1.25 KB
Versions: 4
Compression:
Stored size: 1.25 KB
Contents
module AIPP module AIP class Executable < AIPP::Executable def initialize(exe_file) super AIPP.options.merge( module: 'AIP', airac: AIRAC::Cycle.new, region_options: [] ) OptionParser.new do |o| o.banner = <<~END Download online AIP and convert it to #{AIPP.options.schema.upcase}. Usage: #{File.basename($0)} [options] END common_options(o) o.on('-a', '--airac (DATE|INTEGER)', String, %Q[AIRAC date or delta e.g. "+1" (default: "#{AIPP.options.airac.date.xmlschema}")]) { AIPP.options.airac = airac_for(_1) } if AIPP.options.schema == :ofmx o.on('-g', '--[no-]grouped-obstacles', 'group obstacles (default: false)') { AIPP.options.grouped_obstacles = _1 } end o.on('-O', '--region-options STRING', String, %Q[comma separated region specific options]) { AIPP.options.region_options = _1.split(',') } developer_options(o) end.parse! end private def airac_for(argument) if argument.match?(/^[+-]\d+$/) # delta AIRAC::Cycle.new + argument.to_i else # date AIRAC::Cycle.new(argument) end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
aipp-2.0.3 | lib/aipp/aip/executable.rb |
aipp-2.0.2 | lib/aipp/aip/executable.rb |
aipp-2.0.1 | lib/aipp/aip/executable.rb |
aipp-2.0.0 | lib/aipp/aip/executable.rb |