Tbpgr Blog

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

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

TbpgrUtils | 追加要件 String#uniq 追加

概要 追加要件 String#uniq 追加 詳細 追加要件 String#uniq 仕様 ・Array#uniqのString版 ※より詳細についてはGitHubのREADMEおよびテストケース参照 GitHub https://github.com/tbpgr/tbpgr_utils Rubygems http://rubygems.org/gems/tbpgr_utils リリース…

Ruby | Kernel | autoload?

概要 Kernel#autoload?(const_name) 詳細 const_name が Kernel.#autoload 設定されているか調べます。 autoload 設定されていないか、ロード済みなら nil を返します。 サンプルコード loaded.rb class Loaded def loaded "loaded" end end kernel_autoload…