Class: Reportinator::RangeArrayFunction

Inherits:
ArrayFunction show all
Defined in:
lib/reportinator/functions/array/range.rb

Constant Summary collapse

PREFIXES =
[">range"]

Instance Method Summary collapse

Methods inherited from ArrayFunction

accepts?, #get, #set_attributes

Methods inherited from Function

parse, #parse_and_execute_value, #parse_value, #prefixes

Methods inherited from Base

config, #config, logger, #logger

Methods included from Helpers

#merge_hash, #merge_hash!, #symbolize_attributes

Instance Method Details

#outputObject



5
6
7
8
9
# File 'lib/reportinator/functions/array/range.rb', line 5

def output
  start_value = parse_value(target)
  end_value = parse_value(values[0])
  (start_value..end_value)
end