class Travis::Client::Commit

def inspect_info

def inspect_info
  "#{short_sha} #{subject.inspect}"
end

def short_sha

def short_sha
  sha.to_s[0..6]
end

def subject

def subject
  message.to_s.lines.first.to_s.strip
end