class Rugged::Diff::Delta

def added?

def added?
  status == :added
end

def copied?

def copied?
  status == :copied
end

def deleted?

def deleted?
  status == :deleted
end

def ignored?

def ignored?
  status == :ignored
end

def inspect

def inspect
  "#<#{self.class.name}:#{object_id} {old_file: #{old_file.inspect}, new_file: #{new_file.inspect}, similarity: #{similarity.inspect}, status: #{status.inspect}>"
end

def modified?

def modified?
  status == :modified
end

def renamed?

def renamed?
  status == :renamed
end

def typechange?

def typechange?
  status == :typechange
end

def untracked?

def untracked?
  status == :untracked
end