class GHArchive::Commit

Public Instance Methods

author() click to toggle source
# File lib/gh-archive/entities.rb, line 18
def author
    CommitAuthor.new(
        @payload['author']['email'],
        @payload['author']['name']
    )
end
distinct() click to toggle source
# File lib/gh-archive/entities.rb, line 29
def distinct
    @payload['distinct']
end
message() click to toggle source
# File lib/gh-archive/entities.rb, line 25
def message
    @payload['message']
end
sha() click to toggle source
# File lib/gh-archive/entities.rb, line 14
def sha
    @payload['sha']
end
url() click to toggle source
# File lib/gh-archive/entities.rb, line 33
def url
    @payload['url']
end