Sha256: 1635cd7c15f43c229582b829dc8e0ce9253c02f5df258a92ea14807ea82f5b65
Contents?: true
Size: 452 Bytes
Versions: 7
Compression:
Stored size: 452 Bytes
Contents
#!/usr/bin/env ruby $:.push File.expand_path("../../lib", __FILE__) require 'thor' require 'semvergen' class SemvergenCLI < Thor desc "bump", "Bump the version of this gem" option :ignore_dirty, type: :boolean, banner: "Skip the git-index-dirty check" def bump Semvergen.bump!(options) end desc "release", "Release the current version of this gem" def release Semvergen.release!(options) end end SemvergenCLI.start(ARGV)
Version data entries
7 entries across 7 versions & 1 rubygems