Sha256: ba51a582f41fef1ddc9d0835c3b0931f3e00a4faf0bfa3c5a869d8f7c2392b0d
Contents?: true
Size: 522 Bytes
Versions: 6
Compression:
Stored size: 522 Bytes
Contents
# encoding: utf-8 require_relative '../api' module Github class Client::Say < API # Generate ASCII octocat with speech bubble. # # @example # Github::Client::Say.new.say "My custom string..." # # @example # github = Github.new # github.octocat.say "My custom string..." # def say(*args) params = arguments(*args).params params[:s] = args.shift unless args.empty? params['raw'] = true get_request('/octocat', params) end end # Say end # Github
Version data entries
6 entries across 6 versions & 3 rubygems