Sha256: 8decd75bf99097dc7789110e82ff4d3f619c98dbbadad41735deba3d83c9e5d3
Contents?: true
Size: 854 Bytes
Versions: 24
Compression:
Stored size: 854 Bytes
Contents
# frozen_string_literal: true module Octokit class Client # Methods for the Feeds API # # @see https://developer.github.com/v3/activity/feeds/ module Feeds # List Feeds # # The feeds returned depend on authentication, see the GitHub API docs # for more information. # # @return [Array<Sawyer::Resource>] list of feeds # @see https://developer.github.com/v3/activity/feeds/#list-feeds def feeds get 'feeds' end # Get a Feed by name # # @param name [Symbol, String] Name of feed to retrieve. # @return [Feed] Parsed feed in the format returned by the configured # parser. def feed(name, options = {}) if rel = feeds._links[name] get rel.href, accept: rel.type, options: options end end end end end
Version data entries
24 entries across 24 versions & 2 rubygems