module MPatch::Extend::Module
Public Instance Methods
convert_instance_methods_to_singleton_methods()
click to toggle source
# File lib/mpatch/module.rb, line 119 def convert_instance_methods_to_singleton_methods self.instance_methods.each do |symbol| module_function symbol public symbol end end
Also aliased as: instances2singletons