git_reflow 0.8.0 → 0.8.1
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/CHANGELOG.md +8 -1
- data/Gemfile.lock +1 -1
- data/README.rdoc +1 -5
- data/lib/git_reflow.rb +1 -1
- data/lib/git_reflow/git_helpers.rb +1 -1
- data/lib/git_reflow/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a5bf85403018fe65d93819c76418ba327d13691d
|
|
4
|
+
data.tar.gz: 075171ddb73fd21d79f7e06c61ea300922dea1e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6df2eb16d00275c2f50bc2f9ae453979e7e001b2d9a2241c924ef6e4480d7ce6adacd3b0078c2f56e097900976f5e1ceac1898840209f03c6ab81bf82630ee33
|
|
7
|
+
data.tar.gz: 4128834c2d0f5e4d679938e8abc96b5bcfb45bcdbe96d1b62f3857d788568cf3bc2efb4b73b3b61bf15b74ba9f89a699574c436e067ac5b6d81e101861c0edba
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,14 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [
|
|
3
|
+
## [v0.8.1](https://github.com/reenhanced/gitreflow/tree/v0.8.1)
|
|
4
4
|
|
|
5
|
+
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.8.0...v0.8.1)
|
|
6
|
+
|
|
7
|
+
**Closed issues:**
|
|
8
|
+
|
|
9
|
+
- Unable to review with latest changes to editor handling [\#176](https://github.com/reenhanced/gitreflow/issues/176)
|
|
10
|
+
|
|
11
|
+
## [v0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
|
|
5
12
|
[Full Changelog](https://github.com/reenhanced/gitreflow/compare/v0.7.5...v0.8.0)
|
|
6
13
|
|
|
7
14
|
**Implemented enhancements:**
|
data/Gemfile.lock
CHANGED
data/README.rdoc
CHANGED
|
@@ -1,11 +1,7 @@
|
|
|
1
1
|
= git-reflow (2015 Fukuoka Ruby Award Winner)
|
|
2
2
|
|
|
3
3
|
{<img src="https://circleci.com/gh/reenhanced/gitreflow.svg?style=svg" alt="Circle CI" />}[https://circleci.com/gh/reenhanced/gitreflow]
|
|
4
|
-
{<img src="https://img.shields.io/badge/git--reflow-v0.
|
|
5
|
-
{<img
|
|
6
|
-
src="https://img.shields.io/badge/git--reflow-v0.7.5-blue.svg?style=flat&link=http://www.rubydoc.info/gems/git_reflow"
|
|
7
|
-
alt="Git workflow powered by git-reflow"
|
|
8
|
-
/>}[http://www.rubydoc.info/gems/git_reflow]
|
|
4
|
+
{<img src="https://img.shields.io/badge/git--reflow-v0.8.0-blue.svg?style=flat&link=https://github.com/reenhanced/gitreflow" alt="Git workflow powered by git-reflow" />}[https://github.com/reenhanced/gitreflow]
|
|
9
5
|
{<img src="http://inch-ci.org/github/reenhanced/gitreflow.svg?branch=master&style=shields" alt="Documentation" />}[http://inch-ci.org/github/reenhanced/gitreflow]
|
|
10
6
|
|
|
11
7
|
{RDocs}[http://www.rubydoc.info/gems/git_reflow]
|
data/lib/git_reflow.rb
CHANGED
|
@@ -56,7 +56,7 @@ module GitReflow
|
|
|
56
56
|
file.write(options[:title] || GitReflow.current_branch)
|
|
57
57
|
end
|
|
58
58
|
|
|
59
|
-
GitReflow.run("#{GitReflow.
|
|
59
|
+
GitReflow.run("#{GitReflow.git_editor_command} #{pull_request_msg_file}", with_system: true)
|
|
60
60
|
|
|
61
61
|
pr_msg = File.read(pull_request_msg_file).split(/[\r\n]|\r\n/).map(&:strip)
|
|
62
62
|
title = pr_msg.shift
|
data/lib/git_reflow/version.rb
CHANGED