Class: DelegateCached::Installer

Inherits:
Object
  • Object
show all
Defined in:
lib/delegate_cached/installer.rb

Direct Known Subclasses

SourceInstaller, TargetInstaller

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(source, target, options) ⇒ Installer

Returns a new instance of Installer.



5
6
7
8
9
# File 'lib/delegate_cached/installer.rb', line 5

def initialize(source, target, options)
  @source = source
  @target = target
  @options = options
end

Instance Attribute Details

#optionsObject (readonly)

Returns the value of attribute options.



3
4
5
# File 'lib/delegate_cached/installer.rb', line 3

def options
  @options
end

#sourceObject (readonly)

Returns the value of attribute source.



3
4
5
# File 'lib/delegate_cached/installer.rb', line 3

def source
  @source
end

#targetObject (readonly)

Returns the value of attribute target.



3
4
5
# File 'lib/delegate_cached/installer.rb', line 3

def target
  @target
end