Skip to content

Instantly share code, notes, and snippets.

@imajes
Created September 25, 2012 19:08
Show Gist options
  • Save imajes/3783821 to your computer and use it in GitHub Desktop.
Save imajes/3783821 to your computer and use it in GitHub Desktop.
class Foo
class << self
attr_accessor :bar
end
def self.current_thing
@bar ||= calculate_current_thing
end
def self.calculate_current_thing
...
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment