Sha256: 72f7466ff812d1fa89dbdf57f29dfb4ce9bf67d29040bed5df9c78f03fbc2703
Contents?: true
Size: 429 Bytes
Versions: 5
Compression:
Stored size: 429 Bytes
Contents
# encoding: utf-8 module GithubCLI class Commit < API class << self def get(user, repo, sha, params, format) output format do github_api.git_data.commits.get user, repo, params end end def create(user, repo, params, format) output format do github_api.git_data.commits.create user, repo, params end end end end # Commit end # GithubCLI
Version data entries
5 entries across 5 versions & 1 rubygems