# File lib/uber-s3/object.rb, line 30
    def exists?
      # TODO.. refactor this as if we've already called head
      # on the object, there is no need to do it again..
      # perhaps move some things into class methods?
      bucket.connection.head(key).status == 200
    end