class Github::Client::Say

Public Instance Methods

say(*args) click to toggle source

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..."
# File lib/github_api/client/say.rb, line 14
def say(*args)
  params = arguments(*args).params
  params[:s] = args.shift unless args.empty?
  params['raw'] = true

  get_request('/octocat', params)
end