LoginSignup
1
1

More than 5 years have passed since last update.

privateを含む全てのインスタンスメソッドを得る方法

Posted at

諸事情があってやることになった。
すっごく気に食わないけどコレでいける。

self.class.instance_methods(false) + self.class.private_instance_methods(false)

長すぎるから、instance_methodsmethodsに変えても良いし、
とても、わかりにくいから、private_instance_methods+protected_instance_methods....なんてことでも良い。

Object#instance_methodsは、protectedpublicのインスタンスメソッドのみを返す。

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1