Class: Slop::ArrayOption

Inherits:
Option
  • Object
show all
Defined in:
lib/slop/types.rb

Overview

Collect multiple items into a single Array. Support arguments separated by commas or multiple occurences.

Constant Summary

Constants inherited from Option

Option::DEFAULT_CONFIG

Instance Attribute Summary

Attributes inherited from Option

#block, #config, #count, #desc, #flags, #value

Instance Method Summary collapse

Methods inherited from Option

#ensure_call, #expects_argument?, #finish, #flag, #help?, #initialize, #key, #null?, #required?, #reset, #suppress_errors?, #tail, #tail?, #to_s, #underscore_flags?

Constructor Details

This class inherits a constructor from Slop::Option

Instance Method Details

#call(value) ⇒ Object



71
72
73
74
75
76
77
78
# File 'lib/slop/types.rb', line 71

def call(value)
  @value ||= []
  if delimiter
    @value.concat value.split(delimiter, limit)
  else
    @value << value
  end
end

#default_valueObject



80
81
82
# File 'lib/slop/types.rb', line 80

def default_value
  config[:default] || []
end

#delimiterObject



84
85
86
# File 'lib/slop/types.rb', line 84

def delimiter
  config.fetch(:delimiter, ",")
end

#limitObject



88
89
90
# File 'lib/slop/types.rb', line 88

def limit
  config[:limit] || 0
end