Tbpgr Blog

Employee Experience Engineer tbpgr(てぃーびー) のブログ

2014-08-23から1日間の記事一覧

Ruby | Module | undef_method

概要 Module#undef_method(*name) -> self 詳細 このモジュールのインスタンスメソッド name を未定義にする。 サンプルコード class Hoge def hoge 'hoge' end print instance_methods(false), "\n" undef_method :hoge print instance_methods(false), "\n…