class Cfhighlander::Dsl::MappingParam

Attributes

mapAttribute[RW]
mapKey[RW]
mapName[RW]

Public Instance Methods

attribute(key) click to toggle source
# File lib/cfhighlander.dsl.params.rb, line 127
def attribute(key)
  @mapAttribute = key
end
key(map_key) click to toggle source
# File lib/cfhighlander.dsl.params.rb, line 123
def key(map_key)
  @mapKey = map_key
end
map(mapName) click to toggle source
# File lib/cfhighlander.dsl.params.rb, line 131
def map(mapName)
  @mapName = mapName
end
mapProvider() click to toggle source
# File lib/cfhighlander.dsl.params.rb, line 135
def mapProvider
  mappings_provider(@mapName)
end
method_missing(method, *args) click to toggle source
# File lib/cfhighlander.dsl.params.rb, line 114
def method_missing(method, *args)
  smethod = "#{method}"
  if smethod.start_with?('Map')
    puts smethod
  end

  super.method_missing(method)
end