bitbucket-pr-post 0.0.7 → 0.0.8

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: 67a8efdbc76edc0cb69af1d932e5c7fd22c9f797
4
- data.tar.gz: cef79c06c4364e85f5962e8f111fabe0e24f1818
3
+ metadata.gz: 18e454a637c0094d983c66861730e580d69f6971
4
+ data.tar.gz: 1f3beb2ba960257c1af95c7fa419e271102c5ab2
5
5
  SHA512:
6
- metadata.gz: 87c0e576488a19e565e246e0bfafe56b124e30235f763645e0b40cb3c18c11e8e499d3de3748a22317c9f47abe81a2154517797fa34defdfd9d299fabd052073
7
- data.tar.gz: ffaa83d3831e1770747e4e1512cf66bb78045f3b7800445bc0ae1e554befadb490548d65af5d3c88650cbe60c3d8399574715352aa600d328834565e2390cba5
6
+ metadata.gz: 3ff4f6f1f5cd8809a95254249cbc38c9bee7ab476195dc292ba216ba3449dd80d448a871f7ecd329b1c575be19f43b25bff9368842e1cd90a2d3ec100be167fa
7
+ data.tar.gz: 4fce984c605361b8b999f50c7e64c0832a788527faf4a729a590047d0758433688660b2702db03022b773ad2ff6367b5a97291002d2765e98fca14c9559857a8
@@ -75,14 +75,14 @@ module Bitbucket
75
75
  @title = @opts[:title]
76
76
  @notice = ''
77
77
  else
78
- @title = `git log --summary --shortstat -1 --format="%s" --no-color --no-notes | head -1`.strip
78
+ @title = `git log -1 --format="%s" --no-color --no-notes | head -1`.strip
79
79
  @title_notice = "\n ^ This is Last Commit Mesasge. Use Option `--title` If You Want Change."
80
80
  end
81
81
 
82
82
  if @opts[:description]
83
83
  @description = @opts[:description]
84
84
  else
85
- @description = `git log --summary -1 --format="%b" --no-color --no-notes`.strip
85
+ @description = `git log -1 --format="%b" --no-color --no-notes`.strip
86
86
  @description_notice = "\n ^ This is Last Commit Mesasge. Use Option `--description` If You Want Change."
87
87
  end
88
88
 
@@ -1,7 +1,7 @@
1
1
  module Bitbucket
2
2
  module Pr
3
3
  class Post
4
- VERSION = "0.0.7"
4
+ VERSION = "0.0.8"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bitbucket-pr-post
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.7
4
+ version: 0.0.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - hiroshi kobayashi
@@ -56,6 +56,8 @@ files:
56
56
  - bitbucket-pr-post-0.0.2.gem
57
57
  - bitbucket-pr-post-0.0.3.gem
58
58
  - bitbucket-pr-post-0.0.5.gem
59
+ - bitbucket-pr-post-0.0.6.gem
60
+ - bitbucket-pr-post-0.0.7.gem
59
61
  - bitbucket-pr-post.gemspec
60
62
  - lib/bitbucket/pr/post.rb
61
63
  - lib/bitbucket/pr/post/version.rb