Sha256: f7946e465562849aff67c9f3a9e9b725a44a442533ee994aa8b14ebf1c3cbd12
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
#!/usr/bin/ruby require 'big_keeper/util/bigkeeper_parser' require 'big_keeper/util/list_generator' require 'big_keeper/service/module_service' module BigKeeper def self.list(path,user,type) BigkeeperParser.parse("#{path}/Bigkeeper") #get home project branches branches = GitService.new.branchs_with_type(File.expand_path(path), type) #get modules list begin modules = BigkeeperParser.module_names file = File.new("#{path}/.bigkeeper/feature_list", 'w') begin #read git info git_operator = GitOperator.new modules.each do |module_name| module_full_path = BigkeeperParser.module_full_path(path, user, module_name) #local project verify if !File.exist? module_full_path Logger.default("No local repository for module '#{module_name}', clone it...") module_git = BigkeeperParser.module_git(module_name) git_operator.clone(File.expand_path("#{module_full_path}/../"), module_git) end feature_modules_list = ModuleService.new.list(module_full_path, user, module_name) dic = {} dic[module_name] = feature_modules_list file << dic file << "\n\n" end file.close end #print list ListGenerator.generate(file,branches) ensure file.close end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
bigkeeper-0.8.0 | lib/big_keeper/command/feature&hotfix/list.rb |