Tbpgr Blog

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

2014-10-04から1日間の記事一覧

Ruby | Object | public_method

概要 Object#public_method(name) -> Method 詳細 オブジェクトの public メソッド name をオブジェクト化した Method オブジェクトを返却 サンプルコード require 'tbpgr_utils' module Mod def mod 'mod' end end class Parent def parent 'parent' end en…