Class: Gem::Commands::TagCommand

Inherits:
Gem::Command
  • Object
show all
Includes:
CommandOptions, GemRelease, Helpers
Defined in:
lib/rubygems/commands/tag_command.rb

Constant Summary

Constants included from GemRelease

GemRelease::VERSION

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeTagCommand

Returns a new instance of TagCommand.



7
8
9
# File 'lib/rubygems/commands/tag_command.rb', line 7

def initialize
  super 'tag', 'Create a git tag and push --tags to origin'
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



5
6
7
# File 'lib/rubygems/commands/tag_command.rb', line 5

def arguments
  @arguments
end

#usageObject (readonly)

Returns the value of attribute usage.



5
6
7
# File 'lib/rubygems/commands/tag_command.rb', line 5

def usage
  @usage
end

Instance Method Details

#executeObject



11
12
13
14
# File 'lib/rubygems/commands/tag_command.rb', line 11

def execute
  tag
  push
end