socialcast-git-extensions 0.11.0 → 0.11.1

Sign up to get free protection for your applications and to get access to all the features.
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.11.0
1
+ 0.11.1
@@ -20,11 +20,14 @@ issues_with_no_branch = issues.reject do |issue|
20
20
  issue.customFieldValues.detect {|k| k.customfieldId == GIT_BRANCH_FIELD }
21
21
  end
22
22
  if issues_with_no_branch.any?
23
- puts "The following tickets do not have a git branch configured"
24
- puts issues_with_no_branch.collect(&:key).join(' ')
23
+ puts "\nThe following tickets do not have a git branch configured:"
24
+ issues_with_no_branch.each do |issue|
25
+ puts "#{issue.key} - #{issue.summary}"
26
+ end
25
27
  end
26
28
 
27
29
  branches.each do |branch|
30
+ puts "\nChecking state of branch #{branch}:"
28
31
  if branches(:merged => true, :remote => true).include?(branch)
29
32
  puts "All changes in #{branch} have been merged into master"
30
33
  issues_in_branch = associated_tickets(branch)
@@ -5,7 +5,7 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{socialcast-git-extensions}
8
- s.version = "0.11.0"
8
+ s.version = "0.11.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Ryan Sonnek"]
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: socialcast-git-extensions
3
3
  version: !ruby/object:Gem::Version
4
- hash: 51
4
+ hash: 49
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 11
9
- - 0
10
- version: 0.11.0
9
+ - 1
10
+ version: 0.11.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Ryan Sonnek