Tbpgr Blog

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

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

Ruby | Module | autoload?

概要 Module#autoload?(const_name) -> String | nil 詳細 const_name が load されていれば nil を、 されていなければ パス を返却します。 サンプルコード 読み込み対象(./target.rb) class Loaded def self.say "loaded!" end end require 'tbpgr_utils'…