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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b9d16b34d650be359faa1d19b5984cad9af10aae
4
- data.tar.gz: 067b869fe2e45df0162b308cd1fddf60618f8b49
3
+ metadata.gz: a5bf85403018fe65d93819c76418ba327d13691d
4
+ data.tar.gz: 075171ddb73fd21d79f7e06c61ea300922dea1e1
5
5
  SHA512:
6
- metadata.gz: 1ee6a2721fe04f0ab7bedc0dbf75100aad1398824d00387022ff7faf5fcb99f507743a5388ad287e267f95a23fb4975d14da4dfba25bba270108874aefd46297
7
- data.tar.gz: 5f85cac1cab156f241684fa5181218cfcbc7e21ea0568f29d6d6882759f59a605d20c30c520b4f314eabfbb7b087c8cedb1cd25a707985d2800f231efb0437f5
6
+ metadata.gz: 6df2eb16d00275c2f50bc2f9ae453979e7e001b2d9a2241c924ef6e4480d7ce6adacd3b0078c2f56e097900976f5e1ceac1898840209f03c6ab81bf82630ee33
7
+ data.tar.gz: 4128834c2d0f5e4d679938e8abc96b5bcfb45bcdbe96d1b62f3857d788568cf3bc2efb4b73b3b61bf15b74ba9f89a699574c436e067ac5b6d81e101861c0edba
data/CHANGELOG.md CHANGED
@@ -1,7 +1,14 @@
1
1
  # Change Log
2
2
 
3
- ## [0.8.0](https://github.com/reenhanced/gitreflow/tree/v0.8.0) (2016-05-26)
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
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- git_reflow (0.8.0)
4
+ git_reflow (0.8.1)
5
5
  colorize (>= 0.7.0)
6
6
  github_api (= 0.14.0)
7
7
  gli (= 2.14.0)
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.7.5-blue.svg?style=flat&link=https://github.com/reenhanced/gitreflow" alt="Git workflow powered by git-reflow" />}[https://github.com/reenhanced/gitreflow]
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.git_editor_comand} #{pull_request_msg_file}", with_system: true)
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
@@ -10,7 +10,7 @@ module GitReflow
10
10
  end
11
11
 
12
12
  def git_editor_command
13
- @git_editor_comand ||= GitReflow::Config.get('core.editor')
13
+ @git_editor_command ||= GitReflow::Config.get('core.editor')
14
14
  end
15
15
 
16
16
  def remote_user
@@ -1,3 +1,3 @@
1
1
  module GitReflow
2
- VERSION = "0.8.0"
2
+ VERSION = "0.8.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: git_reflow
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.0
4
+ version: 0.8.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Valentino Stoll