Sha256: 0a86f1f0bbff466f7d10fd83533aaeedb6b6d55740b00170a5a6e6f240ba5c4a
Contents?: true
Size: 422 Bytes
Versions: 11
Compression:
Stored size: 422 Bytes
Contents
# encoding: utf-8 module GithubCLI class Tag < API class << self def get(user, repo, sha, params, format) output format do github_api.git_data.tags.get user, repo, sha, params end end def create(user, repo, params, format) output format do github_api.git_data.tags.create user, repo, params end end end end # Tag end # GithubCLI
Version data entries
11 entries across 11 versions & 1 rubygems