class Papa::Command::Git::TagPush
Public Class Methods
new(remote, tag_name)
click to toggle source
Calls superclass method
Papa::Command::Base::new
# File lib/papa/command/git/tag_push.rb, line 7 def initialize(remote, tag_name) command = "git push #{remote} #{tag_name}" super(command) end