Class: Backup::Actor::Action

Inherits:
Object
  • Object
show all
Defined in:
lib/backup/actor.rb

Overview

:nodoc:

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, actor, options) ⇒ Action

Returns a new instance of Action.



34
35
36
# File 'lib/backup/actor.rb', line 34

def initialize(name, actor, options)
  @name, @actor, @options = name, actor, options
end

Instance Attribute Details

#actorObject (readonly)

Returns the value of attribute actor.



32
33
34
# File 'lib/backup/actor.rb', line 32

def actor
  @actor
end

#nameObject (readonly)

Returns the value of attribute name.



32
33
34
# File 'lib/backup/actor.rb', line 32

def name
  @name
end

#optionsObject (readonly)

Returns the value of attribute options.



32
33
34
# File 'lib/backup/actor.rb', line 32

def options
  @options
end