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 = args.extract_options!
  normalize! params
  params[:s] = args.shift unless args.empty?
  get_request('/octocat', params, :raw => true)
end