Sha256: 55c840ea96618ff81ce282fadd18c49d6429c929e1541597d6478e24adb51dd6

Contents?: true

Size: 240 Bytes

Versions: 1

Compression:

Stored size: 240 Bytes

Contents

# encoding: utf-8

module GithubCLI
  class API

    @@api = nil

    def self.github_api
      if @@api
        @@api
      else
        @@api = Github.new
      end
    end

    def self.configure_api
    end

  end # API
end # GithubCLI

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
github_cli-0.0.1.pre lib/github_cli/api.rb