module Octokit::Client::Feeds

def feed(name, options = {})

Returns:
  • (Feed) - Parsed feed in the format returned by the configured

Parameters:
  • name (Symbol, String) -- Name of feed to retrieve.
def feed(name, options = {})
  if rel = feeds._links[name]
    get rel.href, accept: rel.type, options: options
  end
end

def feeds

Other tags:
    See: https://developer.github.com/v3/activity/feeds/#list-feeds -

Returns:
  • (Array) - list of feeds
def feeds
  get 'feeds'
end