Tbpgr Blog

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

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

Ruby | Module | class_variable_set

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