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 FileUtils.mkdir_p catalogLocation 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