Sha256: 0f23597fc1243a915908e8445197fc1389495d0b5cfe59310831da68320331be
Contents?: true
Size: 477 Bytes
Versions: 10
Compression:
Stored size: 477 Bytes
Contents
# encoding: utf-8 module Github class Say < API # Generate ASCII octocat with speech bubble. # # = Examples # Github::Say.new.say "My custom string..." # # github = Github.new # github.octocat.say "My custom string..." # def say(*args) params = args.extract_options! normalize! params params[:s] = args.shift unless args.empty? get_request('/octocat', params, :raw => true) end end # Say end # Github
Version data entries
10 entries across 10 versions & 1 rubygems