Skip to content

Instantly share code, notes, and snippets.

@zzak
Forked from nusco/lazy_instance_variable.rb
Created September 13, 2010 16:53
Show Gist options
  • Save zzak/577601 to your computer and use it in GitHub Desktop.
Save zzak/577601 to your computer and use it in GitHub Desktop.
# =============================
# Spell: Lazy Instance Variable
# =============================
# Wait until the first access to initialize an instance variable.
class C
def attribute
@attribute = @attribute || "some value"
end
end
obj = C.new
obj.attribute # => "some value"
# For more information: http://www.pragprog.com/titles/ppmetr/metaprogramming-ruby
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment