Sha256: 1d4069d4f6598d470fd5dea85928b61864b7b4ef044a28d2180584c722e0717f
Contents?: true
Size: 988 Bytes
Versions: 1
Compression:
Stored size: 988 Bytes
Contents
module VersionInfo class Tasks def self.install(opts = {}) #dir = caller.find{|c| /Rakefile:/}[/^(.*?)\/Rakefile:/, 1] dir = File.dirname(Rake.application.rakefile_location) self.new(dir, opts).install end attr_reader :root_path attr_reader :target def initialize(root_path, opts) @root_path = root_path @target = opts[:class] end def install namespace :vinfo do desc "Show current version tag and create version_info.yml if missing" task :show do puts target::VERSION.tag target::VERSION.save unless File.exist?(target::VERSION.class.file_name) end VersionInfo.segments.each do |sgm| desc "Bumps version segment #{sgm.to_s.upcase}" task sgm.to_sym do target::VERSION.bump(sgm) puts "version changed to #{target::VERSION}" target::VERSION.save end end end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
version_info-0.5.3 | lib/version_info/tasks.rb |