Sha256: 7d49f133542a103b5103d03a67090654a9b226d8aea64726f6b50e12bffde781
Contents?: true
Size: 672 Bytes
Versions: 295
Compression:
Stored size: 672 Bytes
Contents
require 'travis/client' module Travis module Client class Commit < Entity include NotLoadable # @!parse attr_reader :sha, :branch, :message, :committed_at, :author_name, :author_email, :committer_name, :committer_email, :compare_url attributes :sha, :branch, :message, :committed_at, :author_name, :author_email, :committer_name, :committer_email, :compare_url time :committed_at one :commit many :commits def subject message.to_s.lines.first.to_s.strip end def short_sha sha.to_s[0..6] end def inspect_info short_sha + " " + subject.inspect end end end end
Version data entries
295 entries across 295 versions & 3 rubygems