Sha256: 185dbfc1fb40ce0adb094c2765fedf5ea7a4c856a14efb201bd800bbe8e12152

Contents?: true

Size: 327 Bytes

Versions: 2

Compression:

Stored size: 327 Bytes

Contents

# encoding: utf-8

module GithubCLI
  class Blob < API

    class << self

      def get(user, repo, sha, params)
        github_api.git_data.blobs.get user, repo, params
      end

      def create(user, repo, params)
        github_api.git_data.blobs.create user, repo, params
      end
    end

  end # Blob
end # GithubCLI

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
github_cli-0.2.1 lib/github_cli/apis/blob.rb
github_cli-0.2.0 lib/github_cli/apis/blob.rb