Sha256: 049cc2ab7bfabbb44ce129aa5829ee6885802cb0ffd232d792bae02820178f97
Contents?: true
Size: 389 Bytes
Versions: 24
Compression:
Stored size: 389 Bytes
Contents
# frozen_string_literal: true module Octokit class Client # Methods for the unpublished Octocat API module Say # Return a nifty ASCII Octocat with GitHub wisdom # or your own # # @return [String] def say(text = nil, options = {}) options[:s] = text if text get 'octocat', options end alias octocat say end end end
Version data entries
24 entries across 24 versions & 2 rubygems