Skip to Content Skip to Search
Methods
I

Instance Public methods

identified?()

# File activestorage/app/models/active_storage/blob/identifiable.rb, line 16
def identified?
  identified
end

identify()

# File activestorage/app/models/active_storage/blob/identifiable.rb, line 4
def identify
  identify_without_saving
  save!
end

identify_without_saving()

# File activestorage/app/models/active_storage/blob/identifiable.rb, line 9
def identify_without_saving
  unless identified?
    self.content_type = identify_content_type
    self.identified = true
  end
end