module GGem::CLI::ForceTagOptionCommand

Public Class Methods

new() click to toggle source
Calls superclass method GGem::CLI::ValidCommand::new
# File lib/ggem/cli/commands.rb, line 269
def initialize
  super do
    option(
      "force-tag",
      "force tagging even with uncommitted files",
      abbrev: "f",
    )
  end
end