class CrystalClear::PassThroughInstantiator

Public Class Methods

new(instance) click to toggle source
# File lib/crystal_clear/instantiator/pass_through_instantiator.rb, line 6
def initialize(instance)
  @instance = instance
end

Public Instance Methods

instantiate() click to toggle source
# File lib/crystal_clear/instantiator/pass_through_instantiator.rb, line 10
def instantiate
  @instance
end