class SparkleFormation::GoogleStruct

FunctionStruct for customized google functions

Public Instance Methods

__anchor_start() click to toggle source

@return [String] start character(s) used to anchor function call

# File lib/sparkle_formation/function_struct.rb, line 321
def __anchor_start
  "$("
end
__anchor_stop() click to toggle source

@return [String] stop character(s) used to anchor function call

# File lib/sparkle_formation/function_struct.rb, line 326
def __anchor_stop
  ")"
end
__empty_argument_list() click to toggle source

@return [String] value to use when argument list is empty

# File lib/sparkle_formation/function_struct.rb, line 331
def __empty_argument_list
  ""
end
__single_quote_strings() click to toggle source

@return [FalseClass] disable single quote string generation

# File lib/sparkle_formation/function_struct.rb, line 336
def __single_quote_strings
  false
end
_klass() click to toggle source

@return [Class]

# File lib/sparkle_formation/function_struct.rb, line 341
def _klass
  ::SparkleFormation::GoogleStruct
end