Skip to content

Instantly share code, notes, and snippets.

@jmettraux
Created August 11, 2011 09:18
Show Gist options
  • Save jmettraux/1139234 to your computer and use it in GitHub Desktop.
Save jmettraux/1139234 to your computer and use it in GitHub Desktop.
class Resources
def initialize(x, items)
@x = x
@items = items
@indexed = false
end
def first
index unless @indexed
@items.first
end
def create
# ...
end
protected
def index
# ...
@indexed = true
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment