Tbpgr Blog

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

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

Ruby | Proc | source_location

概要 Proc#source_location -> [String, Fixnum] | nil 詳細 Procを定義したソースコードのファイル名と行番号を配列で返却。 サンプルコード require 'tbpgr_utils' pr1 = Proc.new {} pr2 = proc {} lm = lambda {} bulk_puts_eval binding, <<-EOS pr1.so…