Skip to content

Instantly share code, notes, and snippets.

@nusco
Created August 18, 2010 15:21
Show Gist options
  • Select an option

  • Save nusco/535107 to your computer and use it in GitHub Desktop.

Select an option

Save nusco/535107 to your computer and use it in GitHub Desktop.
Spell: Lazy Instance Variable
# =============================
# 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