octopolo 1.6.0 → 1.7.0
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/octopolo/github/label.rb +2 -0
- data/lib/octopolo/scripts/issue.rb +3 -0
- data/lib/octopolo/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9334b55413013fff938d17faa0915b5d74e3c60a
|
4
|
+
data.tar.gz: ad1c3dd6590b82460fea3ffe4228b45cfbccbcb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6bd7da2422de942541157b0328bf49b168b04dfee1c829a08299d6d4a75755e57ea3514add65f3696262ffddc0cd3cddffef25724d2e38eb5c7eb912b8edf62b
|
7
|
+
data.tar.gz: 8e8337675ee8304524a911f0bb37d00917c93e088f1391452ede7f74f496fd9c19d2d0cdae20ac99bc41f6c3816991b249da19fe340c63b86a4e822a27ffef8e
|
@@ -1,5 +1,6 @@
|
|
1
1
|
require "yaml"
|
2
2
|
require "octokit"
|
3
|
+
require "pry"
|
3
4
|
|
4
5
|
module Octopolo
|
5
6
|
module GitHub
|
@@ -37,6 +38,7 @@ module Octopolo
|
|
37
38
|
#
|
38
39
|
# label - a label object
|
39
40
|
def self.first_or_create(label)
|
41
|
+
# binding.pry
|
40
42
|
unless all_from_repo.include?(label)
|
41
43
|
GitHub.add_label(config.github_repo, label.name, label.color)
|
42
44
|
end
|
@@ -5,6 +5,7 @@ require_relative "../github/issue_creator"
|
|
5
5
|
require_relative "../pivotal/story_commenter"
|
6
6
|
require_relative "../jira/story_commenter"
|
7
7
|
require_relative "../question"
|
8
|
+
require "pry"
|
8
9
|
|
9
10
|
module Octopolo
|
10
11
|
module Scripts
|
@@ -72,6 +73,8 @@ module Octopolo
|
|
72
73
|
end
|
73
74
|
end
|
74
75
|
|
76
|
+
# binding.pry
|
77
|
+
|
75
78
|
self.labels
|
76
79
|
end
|
77
80
|
protected :ask_labels
|
data/lib/octopolo/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: octopolo
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Patrick Byrne
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2018-
|
13
|
+
date: 2018-08-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: gli
|