SyntaxFix
Write A Post
Hire A Developer
Questions
class Foo def self.fclass_method end def finstance_method end end foo_obj = Foo.new foo_obj.class.methods(false) => [:fclass_method] foo_obj.class.instance_methods(false) => [:fclass_method]
Hope this helps you!