Skip to content

Commit

Permalink
rb file
Browse files Browse the repository at this point in the history
  • Loading branch information
Darshan Shankar committed Sep 14, 2014
1 parent 4cde175 commit 0541a10
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions sample.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
require 'octokit/client'
require 'octokit/default'

# Ruby toolkit for the GitHub API
# an rb testfile shamelessly copied
# from https://github.com/octokit/octokit.rb/blob/master/lib/octokit.rb

module Octokit

class << self
include Octokit::Configurable

# API client based on configured options {Configurable}
#
# @return [Octokit::Client] API wrapper
def client
@client = Octokit::Client.new(options) unless defined?(@client) && @client.same_options?(options)
@client
end

# @private
def respond_to_missing?(method_name, include_private=false); client.respond_to?(method_name, include_private); end if RUBY_VERSION >= "1.9"
# @private
def respond_to?(method_name, include_private=false); client.respond_to?(method_name, include_private) || super; end if RUBY_VERSION < "1.9"

private

def method_missing(method_name, *args, &block)
return super unless client.respond_to?(method_name)
client.send(method_name, *args, &block)
end

end
end

Octokit.setup

0 comments on commit 0541a10

Please sign in to comment.