Sha256: 2e6b73d90253771001ff966273667cef24ca2ac18defbfe1d30ecbfa01f690ec
Contents?: true
Size: 495 Bytes
Versions: 16
Compression:
Stored size: 495 Bytes
Contents
# encoding: utf-8 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
16 entries across 16 versions & 1 rubygems