Sha256: 79db0b8616d99e63561f6d6e00d4b75e458f3d4b83636fb59f76374ca3f5d3bb
Contents?: true
Size: 1.17 KB
Versions: 3
Compression:
Stored size: 1.17 KB
Contents
require 'thor' require 'thor-scmversion/scm_version' require 'thor-scmversion/git_version' require 'thor-scmversion/p4_version' require 'thor-scmversion/shell_utils' module ThorSCMVersion class Tasks < Thor namespace "version" desc "bump TYPE", "Bump version number (type is major, minor or patch)" def bump(type) current_version.bump! type begin current_version.tag write_version say "Tagged: #{current_version}", :green rescue => e say "Tagging #{current_version} failed due to error", :red say e, :red exit 1 end end desc "current", "Show current SCM tagged version" def current say current_version.to_s end private def current_version @current_version ||= ThorSCMVersion.versioner.from_path end def write_version ver = current_version.to_s version_files.each do |ver_file| File.open(ver_file, 'w+') do |f| f.write ver end end ver end eval "def source_root ; Pathname.new File.dirname(__FILE__) ; end" def version_files [ source_root.join('VERSION') ] end end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
thor-scmversion-0.0.3 | lib/thor-scmversion.rb |
thor-scmversion-0.0.2 | lib/thor-scmversion.rb |
thor-scmversion-0.0.1 | lib/thor-scmversion.rb |