Tbpgr Blog

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

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

Ruby | Object | public_methods

概要 Object#public_methods(include_inherited = true) -> [Symbol] 詳細 publicメソッド名の一覧を返却。 include_inherited に false を指定すると自クラスのメソッドのみを返却 サンプルコード require 'tbpgr_utils' module Mod def mod; end end class…