prima-twig 0.0.12 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/bin/{twig-take-issue → twig-pick-issue} +6 -6
- metadata +17 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 09bef172acaa6c5f1b05c73e92bac7497137c54e
|
|
4
|
+
data.tar.gz: 846792982ecbe01f657d5b0238ac034a8c7804fe
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 33f5b173dd2f64ce7a23f824b64b73bd5c75999a54d6a3ddcca8fca25cd4a4eedcce6581a6a5f18cd1caa4e30b0cfd64073090de89990616964d2d1854025697
|
|
7
|
+
data.tar.gz: 03419a4ac881b41ae2fd377a5e59834aa6e1e997b66ec0db710fbc61df5600ff8b659a16f06ca36d4e9e0f30f5462ce793b8a0ad871e3ddf3c560ae0dd7f09d1
|
|
@@ -8,15 +8,15 @@ require 'highline/import'
|
|
|
8
8
|
def help_content
|
|
9
9
|
<<-HELP
|
|
10
10
|
|
|
11
|
-
twig-
|
|
11
|
+
twig-pick-issue
|
|
12
12
|
===============
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
Picks an issue from github and open a branch for it
|
|
15
15
|
|
|
16
16
|
Synopsis
|
|
17
17
|
--------
|
|
18
18
|
|
|
19
|
-
twig
|
|
19
|
+
twig pick-issue
|
|
20
20
|
|
|
21
21
|
|
|
22
22
|
Subcommand for Twig: <http://rondevera.github.io/twig/>
|
|
@@ -33,7 +33,7 @@ if args.include?('--help')
|
|
|
33
33
|
end
|
|
34
34
|
|
|
35
35
|
|
|
36
|
-
class
|
|
36
|
+
class PickIssue
|
|
37
37
|
def initialize
|
|
38
38
|
@prima = Prima.new
|
|
39
39
|
end
|
|
@@ -63,7 +63,7 @@ class TakeIssue
|
|
|
63
63
|
def choose_issue(issues)
|
|
64
64
|
choose do |menu|
|
|
65
65
|
|
|
66
|
-
menu.prompt = '
|
|
66
|
+
menu.prompt = 'Pick an issue: '.cyan
|
|
67
67
|
|
|
68
68
|
issues.each do |issue|
|
|
69
69
|
milestone = issue.milestone
|
|
@@ -75,4 +75,4 @@ class TakeIssue
|
|
|
75
75
|
end
|
|
76
76
|
end
|
|
77
77
|
|
|
78
|
-
|
|
78
|
+
PickIssue.new.execute!
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: prima-twig
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.13
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matteo Giachino
|
|
@@ -95,20 +95,34 @@ dependencies:
|
|
|
95
95
|
- - "~>"
|
|
96
96
|
- !ruby/object:Gem::Version
|
|
97
97
|
version: '2.0'
|
|
98
|
+
- !ruby/object:Gem::Dependency
|
|
99
|
+
name: rugged
|
|
100
|
+
requirement: !ruby/object:Gem::Requirement
|
|
101
|
+
requirements:
|
|
102
|
+
- - "~>"
|
|
103
|
+
- !ruby/object:Gem::Version
|
|
104
|
+
version: '0.22'
|
|
105
|
+
type: :runtime
|
|
106
|
+
prerelease: false
|
|
107
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
108
|
+
requirements:
|
|
109
|
+
- - "~>"
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '0.22'
|
|
98
112
|
description: Our tools to manage git, github and trello
|
|
99
113
|
email: matteo.giachino@prima.it
|
|
100
114
|
executables:
|
|
101
115
|
- twig-circle
|
|
102
116
|
- twig-open-pr
|
|
117
|
+
- twig-pick-issue
|
|
103
118
|
- twig-review
|
|
104
|
-
- twig-take-issue
|
|
105
119
|
extensions: []
|
|
106
120
|
extra_rdoc_files: []
|
|
107
121
|
files:
|
|
108
122
|
- bin/twig-circle
|
|
109
123
|
- bin/twig-open-pr
|
|
124
|
+
- bin/twig-pick-issue
|
|
110
125
|
- bin/twig-review
|
|
111
|
-
- bin/twig-take-issue
|
|
112
126
|
- lib/prima_twig.rb
|
|
113
127
|
homepage: http://rubygems.org/gems/prima-twig
|
|
114
128
|
licenses:
|