class Travis::Client::Account

def load_attribute(name, &block)

def load_attribute(name, &block)
  session.accounts if missing? name
  block ? attributes.fetch(name.to_s, &block) : attributes[name.to_s]
end