Method: Bundler::Thor::Argument#print_default
- Defined in:
- lib/bundler/vendor/thor/lib/thor/parser/argument.rb
#print_default ⇒ Object
27 28 29 30 31 32 33 |
# File 'lib/bundler/vendor/thor/lib/thor/parser/argument.rb', line 27 def print_default if @type == :array and @default.is_a?(Array) @default.map(&:dump).join(" ") else @default end end |