module Octospy::Parser::Download

Public Instance Methods

parse_download_event() click to toggle source
# File lib/octospy/parser/download.rb, line 4
def parse_download_event
  {
    status: "download #{@event.payload.name}",
    title: @event.payload.description,
    link: @event.payload.html_url
  }
end