class Github::Client::Say

def say(*args)


github.octocat.say "My custom string..."
github = Github.new
@example

Github::Client::Say.new.say "My custom string..."
@example

Generate ASCII octocat with speech bubble.
def say(*args)
  params = arguments(*args).params
  params[:s] = args.shift unless args.empty?
  params['raw'] = true
  get_request('/octocat', params)
end