Sha256: 348d13016bd9129181e7e322004dc0c47bbce477ea406986b9d87066db45b893

Contents?: true

Size: 1.08 KB

Versions: 4

Compression:

Stored size: 1.08 KB

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 "Inspect all current version keys"
        task :inspect do
          puts target::VERSION.inspect
        end

        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.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

4 entries across 4 versions & 1 rubygems

Version Path
version_info-0.6.4 lib/version_info/tasks.rb
version_info-0.6.3 lib/version_info/tasks.rb
version_info-0.6.2 lib/version_info/tasks.rb
version_info-0.6.1 lib/version_info/tasks.rb