Sha256: c58543944f9e6d503bd86b0a73bf91b4dd3eb03106376047e6ad00904362cb96

Contents?: true

Size: 1.68 KB

Versions: 1

Compression:

Stored size: 1.68 KB

Contents

module Clio

  module Usage #:nodoc:

    # = Usage Argument
    #
    # TODO: Should argument have name in addition to type?
    class Argument
      #attr :parent
      #attr :name
      attr :type
      attr :help
      attr :splat

      # New Argument.
      def initialize(type, &block)
        @type      = type
        #@name      = type.downcase if type.upcase != type
        @splat     = false
        @help      = ''
        instance_eval(&block) if block
      end

      #
      def initialize_copy(o)
        #@name = o.name.dup
        @type = o.type.dup
        @help = o.help.dup
      end

      # Same as +name+ but given as a symbol.
      #def key
      #  name.to_sym
      #end

      # Specify the type of the argument.
      # This is an arbitrary description of the type.
      # The value given is converted to uppercase.
      #
      #   arg.type('file')
      #   arg.type #=> 'FILE'
      #
      def type(string=nil)
        return @type unless string
        @type = string.to_s.upcase
        self
      end

      #def name(string=nil)
      #  return @name unless string
      #  @name = string.to_s
      #  self
      #end

      #
      def splat(true_or_false=nil)
        return @splat if true_or_false.nil?
        @splat = true_or_false
      end

      # Specify help text for argument.
      def help(string=nil)
        @help.replace(string.to_s) if string
        @help
      end

      def to_s
        s = "<#{type}"
        s << (splat ? "...>" : ">")
        s
      end

      def inspect
        to_s
        #s  = "<#{name}"
        #s << ":#{type.inspect}" if type
        #s << ">"
        #s
      end

    end #class Argument

  end #module Usage

end #module Clio

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
clio-0.3.0 lib/clio/usage/argument.rb