class Papa::Command::Git::Tag

Public Class Methods

new(tag_name) click to toggle source
Calls superclass method Papa::Command::Base::new
# File lib/papa/command/git/tag.rb, line 7
def initialize(tag_name)
  command = "git tag #{tag_name}"
  super(command)
end