class Github::Say

def say(*args)


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

Github::Say.new.say "My custom string..."
= Examples

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