class Superhosting::CompositeMapper::Base

Attributes

etc[RW]
lib[RW]
web[RW]

Public Class Methods

new(etc_mapper:, lib_mapper:, web_mapper:) click to toggle source
# File lib/superhosting/composite_mapper/base.rb, line 6
def initialize(etc_mapper:, lib_mapper:, web_mapper:)
  self.etc = etc_mapper
  self.lib = lib_mapper
  self.web = web_mapper
end

Public Instance Methods

method_missing(m, *args, &block) click to toggle source
# File lib/superhosting/composite_mapper/base.rb, line 12
def method_missing(m, *args, &block)
  self.etc.send(m, *args, &block)
end