method

show_default?

ruby latest stable - Class: Bundler::Thor::Argument

Method not available on this version

This method is only available on newer versions. The first available version (v2_6_3) is shown here.

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