Class: Runcible::Wrapper

Inherits:
Object
  • Object
show all
Defined in:
lib/runcible/instance.rb

Overview

Wrapper class to provide access to instances

Instance Method Summary collapse

Constructor Details

#initialize(name) ⇒ Wrapper

Returns a new instance of Wrapper.



91
92
93
94
# File 'lib/runcible/instance.rb', line 91

def initialize(name)
  @name = name
  @methods = []
end

Instance Method Details

#set_instance(attr_name, instance) ⇒ Object



96
97
98
99
# File 'lib/runcible/instance.rb', line 96

def set_instance(attr_name, instance)
  @methods << attr_name
  define_singleton_method(attr_name) { instance }
end

#to_sObject



101
102
103
# File 'lib/runcible/instance.rb', line 101

def to_s
  "#{@name} - #{@methods.uniq.sort}"
end