Sha256: 69533b525ff0f40436b002df41641d79585eb5ceeaf6e52dbb85fa505e1f11bb
Contents?: true
Size: 268 Bytes
Versions: 12
Compression:
Stored size: 268 Bytes
Contents
require 'papa/command/base' module Papa module Command module Git class TagPush < Command::Base def initialize(remote, tag_name) command = "git push #{remote} #{tag_name}" super(command) end end end end end
Version data entries
12 entries across 12 versions & 1 rubygems