class ManifestOpts

Manages the command line interface for the AS3 Manifest File generation tool.

Public Class Methods

add_optional(op,config) click to toggle source
# File lib/shed/opts/manifest_opts.rb, line 22
def self.add_optional(op,config)
  superclass.add_optional(op,config)
  op.on("-f", "--filter [STRING]", String, "Package filter, in the form of 'org.helvector', to include in the generated manifest.") do |value|
    config[:filter] = value
  end
end
default_config() click to toggle source
# File lib/shed/opts/manifest_opts.rb, line 16
def self.default_config
  dc = superclass.default_config
  dc[:output] = "manifest.xml"
  dc
end
description() click to toggle source
# File lib/shed/opts/manifest_opts.rb, line 12
def self.description
  "ActionScript Manifest Generator Tool"
end
name() click to toggle source
# File lib/shed/opts/manifest_opts.rb, line 8
def self.name
  "as-manifest"
end