Tbpgr Blog

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

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

Ruby | Object | protected_methods

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