github-pivotal-flow 1.1 → 1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d28bd67dcb12ae8b5703b61c8622e682e9db5a2d
4
- data.tar.gz: ad959917dd3928902a45fc8ed02d4a6b0909e105
3
+ metadata.gz: f9b610ee742c48034c61dea914dda07d41e01ad3
4
+ data.tar.gz: 036cd8c69558626b705bc11fbf8eca6112a31862
5
5
  SHA512:
6
- metadata.gz: 040c6e3b6be5d5111279f614ca37f07cff8eaae20023611f6c2be7c1b7ed044baf19dd264601e867b4a7ad8d3cce51f82eac88a3d4ae7b50dc04f977d1da0853
7
- data.tar.gz: 5d75d84e6e0e1e1024277f07552741545996220d45054919cf87c5ec81f0106e055e0032389480122fd5bc68d9102bd1dca4b2453273ae0fa717011579b4c941
6
+ metadata.gz: 32a04dadb71f5408229e4fba7067283d7181438ca298c2e6fe070669db7d45c0b1f5eb2588af45f7f59c07f754001f37a48ed6744acfe027e11e31e8f4e276fd
7
+ data.tar.gz: 98b3862a4c10d87e2dac080b62eff22e52df789ff5e70fd18640db09d86b39f5225ebeea03b848c053935b7c6ae71bb9097e7b804e5952eae69d075caee22b2e
data/README.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # Github Pivotal Flow
2
2
 
3
- <img src="https://travis-ci.org/roomorama/github-pivotal-flow.png" data-bindattr-34="34" title="Build Status Images">
3
+ [![Gem Version](https://badge.fury.io/rb/github-pivotal-flow.svg)](http://badge.fury.io/rb/github-pivotal-flow)
4
+ [![Build Status](https://travis-ci.org/donaldpiret/github-pivotal-flow.svg?branch=master)](https://travis-ci.org/donaldpiret/github-pivotal-flow)
4
5
 
5
6
  `github-pivotal-flow` provides a set of additional Git commands to help developers when working with [Pivotal Tracker][pivotal-tracker], git-flow and Github pull requests.
6
7
  It follows the branch structure recommended by [Git flow][git-flow].
@@ -92,16 +92,12 @@ module GithubPivotalFlow
92
92
  end
93
93
 
94
94
  def merge_to_root!(commit_message = nil, options = {})
95
- commit_message ||= "Merge #{branch_name} to #{root_branch_name}"
95
+ commit_message = "Merge #{branch_name} to #{root_branch_name}" if commit_message.blank?
96
96
  commit_message << "\n\n[#{options[:no_complete] ? '' : 'Completes '}##{id}] "
97
97
  print "Merging #{branch_name} to #{root_branch_name}... "
98
98
  Git.checkout(root_branch_name)
99
99
  Git.pull_remote(root_branch_name)
100
- if trivial_merge?
101
- Git.merge(branch_name, commit_message: commit_message, ff: true)
102
- else
103
- Git.merge(branch_name, commit_message: commit_message, no_ff: true)
104
- end
100
+ Git.merge(branch_name, commit_message: commit_message, no_ff: true)
105
101
  Git.push(root_branch_name)
106
102
  self.delete_branch!
107
103
  self.cleanup!
@@ -1,3 +1,3 @@
1
1
  module GithubPivotalFlow
2
- VERSION = '1.1'
2
+ VERSION = '1.2'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: github-pivotal-flow
3
3
  version: !ruby/object:Gem::Version
4
- version: '1.1'
4
+ version: '1.2'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Donald Piret
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-07-15 00:00:00.000000000 Z
11
+ date: 2014-08-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: highline
@@ -150,20 +150,6 @@ dependencies:
150
150
  - - "~>"
151
151
  - !ruby/object:Gem::Version
152
152
  version: '0.8'
153
- - !ruby/object:Gem::Dependency
154
- name: byebug
155
- requirement: !ruby/object:Gem::Requirement
156
- requirements:
157
- - - "~>"
158
- - !ruby/object:Gem::Version
159
- version: '3.1'
160
- type: :development
161
- prerelease: false
162
- version_requirements: !ruby/object:Gem::Requirement
163
- requirements:
164
- - - "~>"
165
- - !ruby/object:Gem::Version
166
- version: '3.1'
167
153
  description: Provides a set of additional Git commands to help developers when working
168
154
  with Pivotal Tracker and Github pull requests
169
155
  email: donald@donaldpiret.com