Sha256: 459a5c92ea88a6e0cefc26c844e9e7bb537487f5c0ec559db489ad9ab95db0d8
Contents?: true
Size: 326 Bytes
Versions: 1
Compression:
Stored size: 326 Bytes
Contents
# encoding: utf-8 module GithubCLI class Commit < API class << self def get(user, repo, sha, params) github_api.git_data.commit user, repo, params end def create(user, repo, params) github_api.repos.create_commit user, repo, params end end end # Commit end # GithubCLI
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
github_cli-0.1.3 | lib/github_cli/apis/commit.rb |