class GHArchive::PullRequest

Public Instance Methods

additions() click to toggle source
# File lib/gh-archive/entities.rb, line 151
def additions
    @payload['additions']
end
base() click to toggle source
# File lib/gh-archive/entities.rb, line 167
def base
    @payload['base']
end
changed_files() click to toggle source
# File lib/gh-archive/entities.rb, line 159
def changed_files
    @payload['changed_files']
end
comments() click to toggle source
# File lib/gh-archive/entities.rb, line 139
def comments
    @payload['comments']
end
commits() click to toggle source
# File lib/gh-archive/entities.rb, line 147
def commits
    @payload['commits']
end
deletions() click to toggle source
# File lib/gh-archive/entities.rb, line 155
def deletions
    @payload['deletions']
end
head() click to toggle source
# File lib/gh-archive/entities.rb, line 163
def head
    @payload['head']
end
merge_commit_sha() click to toggle source
# File lib/gh-archive/entities.rb, line 119
def merge_commit_sha
    @payload['merge_commit_sha']
end
mergeable() click to toggle source
# File lib/gh-archive/entities.rb, line 127
def mergeable
    @payload['mergeable']
end
mergeable_state() click to toggle source
# File lib/gh-archive/entities.rb, line 131
def mergeable_state
    @payload['mergeable_state']
end
merged() click to toggle source
# File lib/gh-archive/entities.rb, line 123
def merged
    @payload['merged']
end
merged_at() click to toggle source
# File lib/gh-archive/entities.rb, line 115
def merged_at
    Time.parse(@payload['merged_at']) rescue nil
end
merged_by() click to toggle source
# File lib/gh-archive/entities.rb, line 135
def merged_by
    @payload['merged_by']
end
review_comments() click to toggle source
# File lib/gh-archive/entities.rb, line 143
def review_comments
    @payload['review_comments']
end