Class: GHArchive::IssueCommentEvent

Inherits:
Event
  • Object
show all
Defined in:
lib/gh-archive/events.rb

Constant Summary

Constants inherited from Event

Event::IMPLEMENTATIONS

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from Event

#actor, #created_at, #initialize, #json, parse, #public?, #repo

Constructor Details

This class inherits a constructor from GHArchive::Event

Class Method Details

.fits?(json) ⇒ Boolean

Returns:

  • (Boolean)


176
177
178
# File 'lib/gh-archive/events.rb', line 176

def self.fits?(json)
    return json['type'] == "IssueCommentEvent"
end

Instance Method Details

#actionObject



180
181
182
# File 'lib/gh-archive/events.rb', line 180

def action
    @payload['action']
end

#issueObject



184
185
186
# File 'lib/gh-archive/events.rb', line 184

def issue
    Issue.new(@payload['issue'])
end