module LightIO::Module::Base::Helper
Protected Instance Methods
find_library_class()
click to toggle source
# File lib/lightio/module/base.rb, line 47 def find_library_class Base.find_library_class(self) end
wrap_to_library(obj)
click to toggle source
# File lib/lightio/module/base.rb, line 42 def wrap_to_library(obj) return _wrap(obj) if self.respond_to?(:_wrap) find_library_class._wrap(obj) end