class FplGsheet::Entries

Public Instance Methods

[](key) click to toggle source
Calls superclass method
# File lib/fpl_gsheet/entry.rb, line 52
def [](key)
  val = super
  if val.nil?
    # Load it
    val = Entry.new(key)
    # Cache it so we don't have to create the Entry again
    self[key] = val
  end

  val
end