dngg 0.0.6 → 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2ecfeb442ed96915e6fdc9101590f01e2efe062593976b072cf298319781a9d7
4
- data.tar.gz: 7a74ad2ec1d7ec59b18696ca68f8e01f3cf435e9fad1d38e8db0e18eac42a60e
3
+ metadata.gz: e6d5f915a14b4aea8a2e33030f9ce394a6974189b43b0861e9fb833e4718a04e
4
+ data.tar.gz: fb05504fa11446623ec4f51e75d9c5f401d2ee300ecd6249d9ac946c47327f34
5
5
  SHA512:
6
- metadata.gz: ae5244fd440c15209f5e0d40c8a77ad4c87a4e12aeae9cbcac792fa7f3846e6f2ec83589dbab9fbd6003eb1a4e3c08073b95d802c0193f3a9cc11245e65ee73b
7
- data.tar.gz: 4d9bfb71b7254a58483437faf444b66efc39cc6ff3b66c14bf423a2615c3da27d697c5272cba80ac397b850d5d745afdda34a9dd3807773fb5dc7e9018e8ef64
6
+ metadata.gz: 6ac1a49dbd6ede11aca9be3f35347db2f8c23b4e457f472a7217206841034d6c950750300372157758deea1a4e463f21650e871a866197464708a82a63dbcae2
7
+ data.tar.gz: b181f805ff8643b96ae0fb3511ec6f663bf8eb50cc43d852d0cdbde295243f9797b379b11d48577aaa72f5301d6cb311cae5fd8c62e2f84cbcc45c6cc2f1e011
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dngg (0.0.6)
4
+ dngg (0.1.0)
5
5
  colorize (= 0.8.1)
6
6
  oj (= 3.8.0)
7
7
  thor (= 1.0.0)
@@ -29,13 +29,14 @@ module DNGG
29
29
  `git fetch | grep 'ignored'`
30
30
  end
31
31
 
32
- if need_rebase(branch) || force_rebase
33
- process_rebase(arry_conflict, branch)
34
- puts 'Tip: 主工程rebase模式'.blue
35
- else
36
- process_merge(arry_conflict, '主工程', branch)
37
- puts 'Tip: 主工程merge模式'.blue
38
- end
32
+ # if need_rebase(branch) || force_rebase
33
+ # process_rebase(arry_conflict, branch)
34
+ # puts 'Tip: 主工程rebase模式'.blue
35
+ # else
36
+ # process_merge(arry_conflict, '主工程', branch)
37
+ # puts 'Tip: 主工程merge模式'.blue
38
+ # end
39
+ process_merge(arry_conflict, '主工程', branch)
39
40
 
40
41
  if arry_conflict.size > 0
41
42
  tip = "==> #{arry_conflict.size}个模块冲突:"
@@ -18,8 +18,9 @@ module DNGG
18
18
  @@msg = ''
19
19
  @@urls = {}
20
20
  @@user = ''
21
+ @@assign = ''
21
22
 
22
- def mr_flow(target_branch, msg)
23
+ def mr_flow(target_branch, name, msg)
23
24
  check_submodule(false)
24
25
 
25
26
  @@current_branch = get_current_branch
@@ -33,6 +34,12 @@ module DNGG
33
34
  @@token = init_check_token
34
35
  @@msg = msg
35
36
 
37
+ git_id = Hash["luwenjun" => 1526, "zhuruixue" => 1859,"hehongqing"=> 1949, "machenfei"=> 2199,"tanhua"=> 2031,"wulei"=> 2014, "yangyanpeng"=> 1865,"yangfan"=> 1928,"yuezhiyu"=> 2569]
38
+
39
+ @@assign = git_id[name]
40
+ if @@assign.nil?
41
+ @@assign = git_id['luwenjun']
42
+ end
36
43
  foreach_module {|sub|
37
44
  create_mr(sub)
38
45
  }
@@ -95,7 +102,8 @@ module DNGG
95
102
  params['source_branch'] = @@current_branch
96
103
  params['target_branch'] = @@target_branch
97
104
  params['title'] = @@msg
98
- # params['remove_source_branch'] = true
105
+ params['assignee_id'] = @@assign
106
+
99
107
  uri = URI.parse("https://gitlab.qima-inc.com/api/v4/projects/#{project_name}/merge_requests?private_token=#{@@token}")
100
108
  response = Net::HTTP.post_form(uri, params)
101
109
  result = Oj.load(response.body)
@@ -16,12 +16,11 @@ module DNGG
16
16
  end
17
17
 
18
18
  def get_submodule
19
- pattern = /(?<=\s)[\/0-9a-zA-Z]*(?=\s)/
19
+ pattern = /(?<=\s)[\/0-9a-zA-Z\-]*(?=\s)/
20
20
 
21
21
  sub_status = `git submodule`
22
22
  sub_status = sub_status.split(/\n/)
23
23
  match = pattern.match(sub_status[0])
24
-
25
24
  if match==nil
26
25
  puts '==> 初始化子模块'.yellow
27
26
  `git submodule update --init --recursive`
@@ -32,6 +31,10 @@ module DNGG
32
31
  result = []
33
32
  sub_status.each do |sub|
34
33
  match = pattern.match(sub.strip)
34
+ unless match
35
+ puts `pwd`,"====>>>子模块id #{sub}拉取异常!!! 执行 git submodule 检查".red
36
+ next
37
+ end
35
38
  result.push(match[0])
36
39
  end
37
40
  result
data/lib/dngg/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module DNGG
2
- VERSION = '0.0.6'
2
+ VERSION = '0.1.0'
3
3
  end
data/lib/dngg.rb CHANGED
@@ -34,8 +34,8 @@ module DNGG
34
34
  start_flow(branch, action)
35
35
  end
36
36
 
37
- desc 'merge <branch> [-r|--rebase]', 'Merge,开发完成后执行; -r:主工程强制rebase'
38
- option :rebase, :default => false, :type => :boolean, aliases: '-r'
37
+ desc 'merge <branch>', 'Merge,开发完成后执行'
38
+ # option :rebase, :default => false, :type => :boolean, aliases: '-r'
39
39
  def merge(branch)
40
40
  rebase = options[:rebase]
41
41
  merge_flow(branch, rebase)
@@ -48,9 +48,9 @@ module DNGG
48
48
  finish_flow(force)
49
49
  end
50
50
 
51
- desc 'mr <branch> <title>', '创建MR'
52
- def mr(branch, title)
53
- mr_flow(branch, title)
51
+ desc 'mr <branch> <name> <title>', '创建MR'
52
+ def mr(branch, name, title)
53
+ mr_flow(branch, name, title)
54
54
  end
55
55
 
56
56
  desc 'switch <branch>', '切换分支'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dngg
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.6
4
+ version: 0.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - iSnow
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-08-04 00:00:00.000000000 Z
11
+ date: 2021-09-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor