Sha256: fe1eeb7e34d91afdcee90db152977d5ccb83d7bebca6301923eab04a5846c8a7

Contents?: true

Size: 731 Bytes

Versions: 2

Compression:

Stored size: 731 Bytes

Contents

require_relative('./environment.rb')

class Verify < Array

  def initialize
    update
  end

  def update
    puts "Verify.update"
    if(defined?(DEV_TASKS))
	  if(Environment.scm=='svn')
	    latestRev=Environment.svn_latest_revision
	    uri=DEV_TASKS[:scm_origin]+"@"+latestRev
		dep_dir="#{Environment.dev_root}/dep/#{DEV_TASKS[:relative_directory]}@#{latestRev}"
		if(!File.exists?(dep_dir))
		  add "svn export #{uri} #{dep_dir}@"
		  add "<%Environment.rake('#{dep_dir}','setup',true)%>"
		  add "<%Environment.rake('#{dep_dir}','build',true)%>"
		  add "<%DEV_TASKS[:commands][:publish].update%>"
		end
	  end
	end
  end

  def add command
    self << command if(!include?(command))
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
dev_tasks-0.0.129 lib/verify.rb
dev_tasks-0.0.128 lib/verify.rb