Module: AssOle::Runtimes::RuntimeDispatcher Private
- Defined in:
- lib/ass_ole.rb
This module is part of a private API. You should avoid using this module if possible, as it may be removed or be changed in the future.
Instance Method Summary collapse
- #ole_connector ⇒ Object private
- #ole_runtime_get ⇒ Object private
Instance Method Details
#ole_connector ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
33 34 35 |
# File 'lib/ass_ole.rb', line 33 def ole_connector ole_runtime_get.ole_connector end |
#ole_runtime_get ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
37 38 39 40 41 42 43 44 45 |
# File 'lib/ass_ole.rb', line 37 def ole_runtime_get if self.class == Module instance_variable_get(:@ole_runtime) elsif self.class == Class class_variable_get(:@@ole_runtime) else self.class.send :ole_runtime_get end end |