git_cli_prompt 0.3.2 → 0.3.3

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: 5ed49c6d6cdb6d97a8ee4ec11ec1b74dc34c1c4c67e0a1a6b16f0d09e4bc119b
4
- data.tar.gz: d8e561ffa2fd041464f0759f96d9f5a3ce7f4b982b91aadee949700995aca5d9
3
+ metadata.gz: 1d2aa443819b0dc7d3577c77ef08fdf53974dd0678e50e73c6cde089bd03a072
4
+ data.tar.gz: '059102d73442db5e1ec584faeb983eed5929d829db84db54ae5471add417c2c7'
5
5
  SHA512:
6
- metadata.gz: 28fc64c809a5c19ac376bae794b88e992f78ffef17e5b99d7904237bb1dd9b2116cff503e455624f9d3f7686c2b0507890ebfdf047910902aca2c4b788b34510
7
- data.tar.gz: b122fea4f90a52cdde45b06ede2eff7018a53f327975ffbf9f1df2bb5b2be6179f771a06e84139410787cde1040409687212bcea81cbcd5f114cbe11493a6303
6
+ metadata.gz: 729639587d2024425e15e08a9e625685b6d816316c43c2f9035892ecaedbf57622dd0a156cfc1aeca2db868c25a8d4702241b65b0d7824839888e4e068b931f4
7
+ data.tar.gz: 9df5649bdab0dc3334739f97b9f86bbe89b6e80b74159a75236052f3e2a9024bf5b5a421779c26cbf579c4407ec73166958e715bcd85d4686e99cc419320080c
data/.release_history.yml CHANGED
@@ -8,3 +8,5 @@ git_cli_prompt:
8
8
  :timestamp: 1635927168.4486034
9
9
  - :version: 0.3.0
10
10
  :timestamp: 1661971996.7526693
11
+ - :version: 0.3.2
12
+ :timestamp: 1679816434.3314788
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GitCliPrompt
4
- VERSION = "0.3.2"
4
+ VERSION = "0.3.3"
5
5
  end
data/lib/push.rb CHANGED
@@ -27,23 +27,43 @@ module GitCliPrompt
27
27
  conf = ws.remote_config
28
28
  end
29
29
 
30
+ if conf.keys.length > 1
31
+ selRemote = pmt.select(" There are more than one remote repository found. Please select which is intended to be push to : ") do |m|
32
+ conf.each do |k,v|
33
+ m.choice "#{k} [#{v["push"]}]", [k, v["push"]]
34
+ end
35
+ end
36
+
37
+ else
38
+ selRemote = [conf.keys.first,conf[conf.keys.first]["push"]]
39
+ end
40
+
30
41
  branch = block.call(:push_to_branch) if block
31
42
  branch = ws.current_branch if is_empty?(branch)
32
43
 
33
- if conf.keys.length == 1
34
- # direct push
35
- name = conf.keys.first
36
- url = conf.values.first["push"]
37
- if confirm_push(name, url)
38
- ws.push_changes_with_tags(name, branch)
39
- block.call(:push_info, { name: name }) if block
40
- else
41
- raise UserAborted
42
- end
44
+ name = selRemote[0]
45
+ url = selRemote[1]
46
+ if confirm_push(name, url)
47
+ ws.push_changes_with_tags(name, branch)
48
+ block.call(:push_info, { name: name, url: url }) if block
43
49
  else
44
- raise UserChangedMind
50
+ pmt.say " Push is skipped ", color: :yellow
45
51
  end
46
52
 
53
+ #if conf.keys.length == 1
54
+ # # direct push
55
+ # name = conf.keys.first
56
+ # url = conf.values.first["push"]
57
+ # if confirm_push(name, url)
58
+ # ws.push_changes_with_tags(name, branch)
59
+ # block.call(:push_info, { name: name }) if block
60
+ # else
61
+ # raise UserAborted
62
+ # end
63
+ #else
64
+ # raise UserChangedMind
65
+ #end
66
+
47
67
  rescue TTY::Reader::InputInterrupt
48
68
  end
49
69
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_cli_prompt
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.2
4
+ version: 0.3.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Liaw
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-03-26 00:00:00.000000000 Z
11
+ date: 2023-03-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: teLogger