Sha256: 7fec31de838cce2f2dd9c5f499779a6e2a533c48a11592fd54aa261dbe28daec
Contents?: true
Size: 434 Bytes
Versions: 12
Compression:
Stored size: 434 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, sha, 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
12 entries across 12 versions & 1 rubygems