method

show_default?

show_default?()
public

No documentation available.

# File lib/bundler/vendor/thor/lib/thor/parser/argument.rb, line 35
    def show_default?
      case default
      when Array, String, Hash
        !default.empty?
      else
        default
      end
    end