lib/argy/argument.rb in argy-0.0.0 vs lib/argy/argument.rb in argy-0.1.0
- old
+ new
@@ -1,11 +1,8 @@
require "argy/parameter"
module Argy
- # An positional argument to be parsed from the command line
class Argument < Parameter
- # The display label for the argument
- # @return [String]
def label
name.to_s.upcase
end
end
end