Sha256: 2f3ccc957221ee3471f78c8e6a6ffeb7429f304579f5f26080501ca908ca1292
Contents?: true
Size: 454 Bytes
Versions: 7
Compression:
Stored size: 454 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 = arguments(*args).params params[:s] = args.shift unless args.empty? get_request('/octocat', params, :raw => true) end end # Say end # Github
Version data entries
7 entries across 7 versions & 1 rubygems