module PathMapper::Node::File

Public Instance Methods

method_missing(m, *args, &block) click to toggle source
Calls superclass method
# File lib/path_mapper/node/file.rb, line 9
def method_missing(m, *args, &block)
  resp = (@content ||= self.value).send(m, *args, &block) if (resp = super).is_a? NilClass # Base::File
  resp
end