Sha256: 711b68dbf00fbb5bb5e4997914c4aded0b96a7b14e8904265dfca968164c3baf
Contents?: true
Size: 794 Bytes
Versions: 27
Compression:
Stored size: 794 Bytes
Contents
require "git" require "fileutils" require "logger" require "pathname" class GetCatalog def initialize () @log = Logger.new(Canzea::config[:logging_root] + '/plans.log') end def do(tag = nil) catalogLocation = Canzea::config[:catalog_location] FileUtils.rm_rf "#{catalogLocation}/catalog" FileUtils.mkdir_p "#{catalogLocation}/catalog" catalogLocation = Pathname.new(catalogLocation).realpath g = Git.clone(Canzea::config[:catalog_git], "catalog", :path => catalogLocation) g.branch Canzea::config[:catalog_branch] if (tag != nil) puts "-- For tag #{tag}" g.tag tag end puts "-- Branch '#{g.branch}' Commit #{g.log[0]}" puts "-- Source #{catalogLocation}" end end
Version data entries
27 entries across 27 versions & 1 rubygems