class Lev::TermMapper
Public Class Methods
scope(scope)
click to toggle source
# File lib/lev/term_mapper.rb, line 13 def self.scope(scope) ScopedAndMapped.new(scope, nil) end
scope_and_map(scope, mapping)
click to toggle source
# File lib/lev/term_mapper.rb, line 9 def self.scope_and_map(scope, mapping) ScopedAndMapped.new(scope, mapping) end
verbatim()
click to toggle source
# File lib/lev/term_mapper.rb, line 5 def self.verbatim ScopedAndMapped.new(nil, nil) end
Public Instance Methods
map(inputs)
click to toggle source
# File lib/lev/term_mapper.rb, line 17 def map(inputs) raise AbstractMethodCalled end