aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ievkit.rb
blob: 7e47e9d84125d5c6ac208c64e277adc7155c2eab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'ievkit/client'
require 'ievkit/default'

# Ruby toolkit for the GitHub API
module Ievkit

  class << self
    include Ievkit::Configurable

    # API client based on configured options {Configurable}
    #
    # @return [Ievkit::Client] API wrapper
    def client
      @client = Ievkit::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

Ievkit.setup