pivotal-github 1.0.4 → 1.0.5
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/lib/pivotal-github/command.rb +0 -10
- data/lib/pivotal-github/version.rb +1 -1
- data/pivotal-github.gemspec +1 -0
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d27d159824834bb70a12f60c4b75a83592e25754
|
|
4
|
+
data.tar.gz: e46e9dfe35a576e0aa13f1396bb3547312e9d4c9
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2f008cd70d2b71cc0a21c688ad903cee873cdeb4986dcb6fb686a2beec1ad22bdc35a2d14466372b7f113e0274f12af30d10033d6d70f87b1070401ed7a45c91
|
|
7
|
+
data.tar.gz: dd2649ccc19231dc16c7becd36185400b3edb544c120a95a8684ba24df07956658d3dd42105afb88060fec603e33c2a980a6370dcb76b6dc11b99f47307d9556
|
|
@@ -70,7 +70,6 @@ class Command
|
|
|
70
70
|
puts command.cmd
|
|
71
71
|
return 1
|
|
72
72
|
else
|
|
73
|
-
check_git_utils
|
|
74
73
|
command.run!
|
|
75
74
|
return 0
|
|
76
75
|
end
|
|
@@ -89,15 +88,6 @@ class Command
|
|
|
89
88
|
end.join(' ')
|
|
90
89
|
end
|
|
91
90
|
|
|
92
|
-
# Exits if the git-utils aren't installed.
|
|
93
|
-
def self.check_git_utils
|
|
94
|
-
if `which git-pull-request`.empty?
|
|
95
|
-
msg = "Install git-utils (https://github.com/mhartl/git-utils)"
|
|
96
|
-
$stderr.puts msg
|
|
97
|
-
exit 1
|
|
98
|
-
end
|
|
99
|
-
end
|
|
100
|
-
|
|
101
91
|
def finish?
|
|
102
92
|
options.finish
|
|
103
93
|
end
|
data/pivotal-github.gemspec
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: pivotal-github
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.0.
|
|
4
|
+
version: 1.0.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Michael Hartl
|
|
@@ -9,7 +9,21 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
date: 2013-06-19 00:00:00.000000000 Z
|
|
12
|
-
dependencies:
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: git-utils
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - '>='
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '0'
|
|
20
|
+
type: :runtime
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - '>='
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '0'
|
|
13
27
|
description: Add commands for Pivotal Tracker-GitHub integration
|
|
14
28
|
email:
|
|
15
29
|
- michael@michaelhartl.com
|