Method: Cloned::Base#initialize

Defined in:
lib/cloned/base.rb

#initialize(target:, destination: nil, **options) ⇒ Base

Returns a new instance of Base.



8
9
10
11
12
# File 'lib/cloned/base.rb', line 8

def initialize(target:, destination: nil, **options)
  @target = target
  @destination = destination
  @options = options
end