class Ossy::CLI::Github::Tagger
Public Instance Methods
call(repo:, tag:)
click to toggle source
# File lib/ossy/cli/github/tagger.rb, line 17 def call(repo:, tag:) result = client.tagger(repo: repo, tag: tag) if result && result[:verified].equal?(true) puts result[:tagger]["name"] end end