gem-changelog 1.0.1 → 1.0.2

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: 735df335b5aa6a2529e7ab8478c185fb2cb9e8d9
4
- data.tar.gz: 19b79eb3e203baa44981d09d2ad12bc7c1c5c19a
3
+ metadata.gz: e79fe9e95b5f7e96d4c0c4b40253a177ca03894a
4
+ data.tar.gz: cf678e101ad9c99146f3d6db6850e1a688c34790
5
5
  SHA512:
6
- metadata.gz: 59b81b99214b3727d664b4b42e8846230873eec87d87632c6ac39cca97ae343aa15cf600641f90e4b78d3ee58f8fa4ea474a5773d61d355ae1235eac17574569
7
- data.tar.gz: fa7166ee63b47b691b3a07c2c804bc59dc56268f1f03d798b48afb348be2f45a0a27c4e8a6c06a580d17d9b2b8424e9b875c75dc221c03c7d656b285d18d2f4d
6
+ metadata.gz: bc1404bd4db5029707c8eb63edc905c0805f99d0f23c732767d6cb455f7df6394e5b40d92726d4e117a416039bf44845c5f6c036fca902728492174fb2cfa48c
7
+ data.tar.gz: aa1b6566d90172a13b5629e0d258101c81e941e89ffb077131ab671a6ea7065c11e1a9b77a05f22035ea6faf80411253ec5f74c789341d8c9f96ac52dc763c8c
data/CHANGELOG.md CHANGED
@@ -1,3 +1,12 @@
1
+ ## 1.0.2 (2013-03-05)
2
+
3
+ - Add "History" to the changelog patterns.
4
+ - Update CHANGELOG.md
5
+
6
+ ## 1.0.1 (2013-03-05)
7
+
8
+ - Code cleanup
9
+
1
10
  ## 1.0.0 (2013-03-05)
2
11
 
3
12
  - Initial release
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Gem
4
4
  module Changelog
5
- VERSION = '1.0.1'
5
+ VERSION = '1.0.2'
6
6
  end
7
7
  end
@@ -3,7 +3,7 @@
3
3
  require 'rubygems/command'
4
4
 
5
5
  class Gem::Commands::ChangelogCommand < Gem::Command
6
-
6
+
7
7
  def initialize
8
8
  super 'changelog', 'Show the changelog of given gem'
9
9
 
@@ -58,7 +58,7 @@ class Gem::Commands::ChangelogCommand < Gem::Command
58
58
 
59
59
  private
60
60
 
61
- CHANGELOG_RE = Regexp.union(/\ACHANGELOG\b/i, /\ACHANGES\b/i)
61
+ CHANGELOG_RE = Regexp.union(/\ACHANGELOG\b/i, /\ACHANGES\b/i, /\AHistory\b/i)
62
62
 
63
63
  def files(dir)
64
64
  Dir.entries(dir).select {|e| FileTest.file?(File.join(dir, e)) }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gem-changelog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OZAWA Sakuro