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.



87
88
89
90
# File 'lib/runcible/instance.rb', line 87

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

Instance Method Details

#set_instance(attr_name, instance) ⇒ Object



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

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

#to_sObject



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

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