changes_since 0.0.9 → 0.0.10

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: 4c78aad0cef349b49a033fbac67befbfc3873dcd
4
- data.tar.gz: 5bddf7ea4b376b3327907823e59a2da6532f7583
3
+ metadata.gz: 7f54efccb749c5d03ec76172fcbb188f3b343dd1
4
+ data.tar.gz: 9175935cca08e5e61cfc6ce0bc885a2b257b3626
5
5
  SHA512:
6
- metadata.gz: a7793e8e337adb87c14fb818fee5ea33950dc87e55a3389e6e543965e6cd40cb02f7a3d3c555d96a29ebe1c1f1ceeb963e249f8abcc7dbb96d6520648433def2
7
- data.tar.gz: f95feb503627ec25150581f4267d9927e78d091c092a695560781abe75a61eb98f46e5ff166c2c0b2f3d1ac7f13fd6dc76e2aaf3aac4973fe12571c2dbce770d
6
+ metadata.gz: 6726da3ef54fba175e143243a70e7b7092d9dd4768203b0d3a1497e69ee1f9f698169fcbab6118f143bcb78884ffd0174988c0d0d860df990cc1c44ee3189ff9
7
+ data.tar.gz: 23bfce2003de71382f2f400df579a923e1c3cfcc7ac1d646db0c58eeea0f65dd2f59c78b7e673edfae962826c47b08a6767361b1c5f3e1f12f488c73acfcd1aa
@@ -89,7 +89,7 @@ module ChangesSince
89
89
  text << "#{branch_author}|"
90
90
  text << "[##{pr}|#{@repo}/pull/#{pr}]|" if @repo && pr
91
91
  text << "[#{sha}|#{@repo}/commit/#{sha}]|" if sha
92
- text << "|" if options[:risk]
92
+ text << " |" if options[:risk]
93
93
  else
94
94
  text = "* #{title} (#{branch_author})"
95
95
  end
@@ -1,3 +1,3 @@
1
1
  module ChangesSince
2
- VERSION = "0.0.9"
2
+ VERSION = "0.0.10"
3
3
  end
@@ -170,7 +170,7 @@ class ChangelogPrinterTest < Test::Unit::TestCase
170
170
  should "allow a column for risk" do
171
171
  printer = ChangesSince::ChangelogPrinter.new(stub, stub, { :markdown => true, :risk => true }, "repo")
172
172
  commit = stub(:author => stub(:name => "NAME"), :message => "MESSAGE", :sha => "123")
173
- printer.expects(:puts).with('|MESSAGE|NAME|[|repo/commit/]||')
173
+ printer.expects(:puts).with('|MESSAGE|NAME|[|repo/commit/]| |')
174
174
  printer.print_message(commit)
175
175
  end
176
176
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: changes_since
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.9
4
+ version: 0.0.10
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ashwin Hegde