class GitVersionBumper::VersionBumper::PatchVersionBumper
Implementation of Bumper
that increases the patch version number.
Private Instance Methods
tag()
click to toggle source
# File lib/git_version_bumper/version_bumper/patch_version_bumper.rb, line 9 def tag git.add_tag( "v#{current_major_version}." \ "#{current_minor_version}." \ "#{current_patch_version + 1}" ) end