gitcycle 0.2.11 → 0.2.12

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.
Files changed (4) hide show
  1. data/README.md +3 -8
  2. data/gitcycle.gemspec +1 -1
  3. data/lib/gitcycle.rb +1 -1
  4. metadata +3 -3
data/README.md CHANGED
@@ -152,25 +152,20 @@ If you associate the wrong branch with a ticket, use `gitc redo` to fix it.
152
152
  Todo
153
153
  ----
154
154
 
155
+ * Label issues with ticket milestone
155
156
  * Add ability to associate multiple branches/pull requests with one Lighthouse ticket
156
157
  * Add comment on lighthouse with issue URL
157
158
  * gitc discuss should tag issue with 'Discuss'
158
159
  * On pass or fail, send email to Github email
159
160
  * Note you can use gitc with a string
160
161
  * gitc qa pass, should not set ticket to pending-approval if its already resolved
161
- * If gitc reset happens on branch with Github issue, close the existing issue
162
+ * If gitc redo happens on branch with Github issue, close the existing issue
162
163
  * Add comment on lighthouse with issue URL
163
164
  * Instead of detecting CONFLICT, use error status $? != 0
164
- * Label issues with ticket milestone
165
165
  * gitc qa pass # since we're changing this to pass all the tickets, we need to loop through all the merged issues and update the lighthouse state to pending-qa
166
- * gitc pull doesnt work in rc: https://gist.github.com/7e508977fbb762d186a6
167
- * Tag issue with milestone
168
166
  * There's still a Tagging Issue I tried to fix parseLabel http://d.pr/8eOS , Pass should remove Pending *, but remove the Branch Name. Also, when I gitc reviewed failed [issue number] it marks it pending-qa and failed.. not correct. I'll take a look at this over the weekend -Tung
169
167
  * gitc discuss should tag issue with 'Discuss'
170
168
  * gitc ready - possibly do syntax checks
171
- * gitc commands should not track branches, so that they have to use the gitc push vs using git push
172
169
  $ gitc st - shortcut
173
170
  * issues aren't assigned to people
174
- * There's still a Tagging Issue I tried to fix parseLabel http://d.pr/8eOS , Pass should remove Pending, but remove the Branch Name
175
- * gitc ready - possibly do syntax checks
176
- * gitc branch should check if a branch already exists and warn user for ticket
171
+ * There's still a Tagging Issue I tried to fix parseLabel http://d.pr/8eOS , Pass should remove Pending, but remove the Branch Name
data/gitcycle.gemspec CHANGED
@@ -6,7 +6,7 @@ $:.unshift lib unless $:.include?(lib)
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "gitcycle"
9
- s.version = '0.2.11'
9
+ s.version = '0.2.12'
10
10
  s.platform = Gem::Platform::RUBY
11
11
  s.authors = [ 'Winton Welsh' ]
12
12
  s.email = [ 'mail@wintoni.us' ]
data/lib/gitcycle.rb CHANGED
@@ -396,7 +396,7 @@ class Gitcycle
396
396
 
397
397
  if issues.empty?
398
398
  branch = pull
399
- create_pull_request(branch)
399
+ branch = create_pull_request(branch)
400
400
 
401
401
  if branch == false
402
402
  puts "Branch not found.\n".red
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gitcycle
3
3
  version: !ruby/object:Gem::Version
4
- hash: 1
4
+ hash: 15
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 11
10
- version: 0.2.11
9
+ - 12
10
+ version: 0.2.12
11
11
  platform: ruby
12
12
  authors:
13
13
  - Winton Welsh