Skip to content

Instantly share code, notes, and snippets.

@shahoxo
Created December 5, 2013 10:59
Show Gist options
  • Save shahoxo/7803518 to your computer and use it in GitHub Desktop.
Save shahoxo/7803518 to your computer and use it in GitHub Desktop.
インスタンス変数と同じライフサイクルのクラスインスタンス変数をつくる
class Hoge
def initialize
@initialized_at = self.class.hoge
end
def self.hoge
@hoge = nil if ObjectSpace.each_object(Hoge).none?
@hoge ||= Time.now
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment