Sha256: 879a7298a1552a8966829da79b1a17004e4b0b556d8606e0ac19dbc14b74d21b
Contents?: true
Size: 426 Bytes
Versions: 12
Compression:
Stored size: 426 Bytes
Contents
# encoding: utf-8 module GithubCLI class Blob < API class << self def get(user, repo, sha, params, format) output format do github_api.git_data.blobs.get user, repo, sha, params end end def create(user, repo, params, format) output format do github_api.git_data.blobs.create user, repo, params end end end end # Blob end # GithubCLI
Version data entries
12 entries across 12 versions & 1 rubygems