Sha256: d7da9ea3a780b65e85708fa74d6de8872fa3629ed9b1cfcee24fed47c601ff90
Contents?: true
Size: 432 Bytes
Versions: 24
Compression:
Stored size: 432 Bytes
Contents
# frozen_string_literal: true module Octokit class Client # Methods for the Emojis API module Emojis # List all emojis used on GitHub # # @return [Sawyer::Resource] A list of all emojis on GitHub # @see https://developer.github.com/v3/emojis/#emojis # @example List all emojis # Octokit.emojis def emojis(options = {}) get 'emojis', options end end end end
Version data entries
24 entries across 24 versions & 2 rubygems