Tbpgr Blog

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

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

Ruby | Module | class_variable_get

概要 Module#class_variable_get(name) -> bool 詳細 クラス/モジュールに定義されているクラス変数 name の値を返却。 サンプルコード require 'tbpgr_utils' module Hogeable @@hoge = 1 end class Hoge @@hoge = 2 end class Hige include Hogeable end …