vclog 1.8.2 → 1.9.0

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.
Files changed (78) hide show
  1. data/.ruby +4 -3
  2. data/.yardopts +7 -0
  3. data/HISTORY.rdoc +207 -0
  4. data/README.rdoc +44 -27
  5. data/bin/vclog +4 -2
  6. data/bin/vclog-autotag +6 -0
  7. data/bin/vclog-bump +6 -0
  8. data/bin/vclog-formats +6 -0
  9. data/bin/vclog-version +6 -0
  10. data/lib/vclog.rb +1 -1
  11. data/lib/vclog.yml +58 -0
  12. data/lib/vclog/adapters.rb +2 -1
  13. data/lib/vclog/adapters/abstract.rb +87 -232
  14. data/lib/vclog/adapters/darcs.rb +72 -67
  15. data/lib/vclog/adapters/git.rb +166 -140
  16. data/lib/vclog/adapters/hg.rb +98 -62
  17. data/lib/vclog/adapters/svn.rb +116 -113
  18. data/lib/vclog/change.rb +110 -81
  19. data/lib/vclog/change_point.rb +77 -0
  20. data/lib/vclog/changelog.rb +58 -296
  21. data/lib/vclog/cli.rb +6 -70
  22. data/lib/vclog/cli/abstract.rb +64 -81
  23. data/lib/vclog/cli/autotag.rb +1 -3
  24. data/lib/vclog/cli/bump.rb +3 -4
  25. data/lib/vclog/cli/formats.rb +4 -4
  26. data/lib/vclog/cli/log.rb +86 -0
  27. data/lib/vclog/cli/version.rb +3 -3
  28. data/lib/vclog/{facets.rb → core_ext.rb} +0 -0
  29. data/lib/vclog/heuristics.rb +112 -38
  30. data/lib/vclog/heuristics/rule.rb +52 -12
  31. data/lib/vclog/heuristics/{label.rb → type.rb} +2 -2
  32. data/lib/vclog/history_file.rb +2 -2
  33. data/lib/vclog/metadata.rb +13 -1
  34. data/lib/vclog/release.rb +26 -12
  35. data/lib/vclog/repo.rb +191 -27
  36. data/lib/vclog/report.rb +187 -0
  37. data/lib/vclog/tag.rb +66 -39
  38. data/lib/vclog/templates/changelog.ansi.rb +9 -26
  39. data/lib/vclog/templates/changelog.atom.erb +3 -3
  40. data/lib/vclog/templates/changelog.gnu.rb +4 -11
  41. data/lib/vclog/templates/changelog.html.erb +11 -2
  42. data/lib/vclog/templates/changelog.markdown.rb +4 -4
  43. data/lib/vclog/templates/changelog.rdoc.rb +4 -4
  44. data/lib/vclog/templates/changelog.rss.erb +2 -6
  45. data/lib/vclog/templates/changelog.xml.erb +14 -2
  46. data/lib/vclog/templates/history.ansi.rb +10 -17
  47. data/lib/vclog/templates/history.atom.erb +4 -4
  48. data/lib/vclog/templates/history.gnu.rb +5 -7
  49. data/lib/vclog/templates/history.html.erb +11 -4
  50. data/lib/vclog/templates/history.json.rb +1 -1
  51. data/lib/vclog/templates/history.markdown.rb +5 -7
  52. data/lib/vclog/templates/history.rdoc.rb +5 -9
  53. data/lib/vclog/templates/history.rss.erb +3 -5
  54. data/lib/vclog/templates/history.xml.erb +15 -3
  55. data/lib/vclog/templates/history.yaml.rb +1 -1
  56. data/man/man1/vclog-autotag.1 +1 -1
  57. data/man/man1/vclog-autotag.1.html +1 -1
  58. data/man/man1/vclog-bump.1 +1 -1
  59. data/man/man1/vclog-bump.1.html +1 -1
  60. data/man/man1/vclog-version.1 +1 -1
  61. data/man/man1/vclog-version.1.html +1 -1
  62. data/man/man1/vclog.1 +25 -13
  63. data/man/man1/vclog.1.html +29 -20
  64. data/man/man1/vclog.1.ronn +31 -18
  65. data/test/unit/case_metadata.rb +1 -1
  66. metadata +48 -34
  67. data/lib/vclog/cli/changelog.rb +0 -33
  68. data/lib/vclog/cli/help.rb +0 -42
  69. data/lib/vclog/cli/history.rb +0 -39
  70. data/lib/vclog/formatter.rb +0 -123
  71. data/lib/vclog/history.rb +0 -131
  72. data/lib/vclog/kernel.rb +0 -12
  73. data/man/man1/vclog-changelog.1 +0 -47
  74. data/man/man1/vclog-changelog.1.html +0 -123
  75. data/man/man1/vclog-changelog.1.ronn +0 -39
  76. data/man/man1/vclog-history.1 +0 -44
  77. data/man/man1/vclog-history.1.html +0 -122
  78. data/man/man1/vclog-history.1.ronn +0 -38
@@ -108,7 +108,7 @@ convention of <code>HISTORY.*</code>.</p></li>
108
108
 
109
109
  <ol class='man-decor man-foot man foot'>
110
110
  <li class='tl'>RubyWorks</li>
111
- <li class='tc'>November 2010</li>
111
+ <li class='tc'>December 2011</li>
112
112
  <li class='tr'>vclog-autotag(1)</li>
113
113
  </ol>
114
114
 
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "VCLOG\-BUMP" "1" "November 2010" "RubyWorks" "VCLog"
4
+ .TH "VCLOG\-BUMP" "1" "December 2011" "RubyWorks" "VCLog"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBvclog\-bump\fR \- suggest next version
@@ -102,7 +102,7 @@ Assume this version number is current.</li>
102
102
 
103
103
  <ol class='man-decor man-foot man foot'>
104
104
  <li class='tl'>RubyWorks</li>
105
- <li class='tc'>November 2010</li>
105
+ <li class='tc'>December 2011</li>
106
106
  <li class='tr'>vclog-bump(1)</li>
107
107
  </ol>
108
108
 
@@ -1,7 +1,7 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "VCLOG\-VERSION" "1" "November 2010" "RubyWorks" "VCLog"
4
+ .TH "VCLOG\-VERSION" "1" "December 2011" "RubyWorks" "VCLog"
5
5
  .
6
6
  .SH "NAME"
7
7
  \fBvclog\-version\fR \- display current version
@@ -91,7 +91,7 @@
91
91
 
92
92
  <ol class='man-decor man-foot man foot'>
93
93
  <li class='tl'>RubyWorks</li>
94
- <li class='tc'>November 2010</li>
94
+ <li class='tc'>December 2011</li>
95
95
  <li class='tr'>vclog-version(1)</li>
96
96
  </ol>
97
97
 
@@ -1,39 +1,51 @@
1
1
  .\" generated with Ronn/v0.7.3
2
2
  .\" http://github.com/rtomayko/ronn/tree/0.7.3
3
3
  .
4
- .TH "VCLOG" "1" "November 2010" "RubyWorks" "VCLog"
4
+ .TH "VCLOG" "1" "December 2011" "RubyWorks" "VCLog"
5
5
  .
6
6
  .SH "NAME"
7
- \fBvclog\fR \- version control logging utility
7
+ \fBvclog\fR \- version control logs
8
8
  .
9
9
  .SH "SYNOPSIS"
10
- \fBvclog [command]\fR
10
+ \fBvclog [options]\fR
11
11
  .
12
12
  .SH "DESCRIPTION"
13
- VCLog is a versitle cross\-VCS/SCM changelog generator\. It currently supports Git, Hg and (limited) Subversion\.
13
+ VCLog is a versitle cross\-VCS/SCM changelog and release history generator\. It currently supports Git, Hg and (limited) Subversion\.
14
14
  .
15
- .SH "COMMANDS"
16
- VCLog provides a number of useful functions:
15
+ .SH "OPTIONS"
16
+ Note that not all formats support all options, and some formats use them in variant manners\.
17
17
  .
18
18
  .IP "\(bu" 4
19
- \fBchangelog\fR Produce a Change Log\.
19
+ \fB\-f\fR, \fB\-\-format <FORMAT>\fR Output format (ansi, rdoc, html, etc\.)
20
20
  .
21
21
  .IP "\(bu" 4
22
- \fBhistory\fR Produce a Release History\.
22
+ \fB\-\-style <URI>\fR Provide a stylesheet URI, either css or xsl, for HTML or XML formats\.
23
23
  .
24
24
  .IP "\(bu" 4
25
- \fBversion\fR Show current tag version\.
25
+ \fB\-d\fR, \fB\-\-detail\fR Include commit message details\.
26
26
  .
27
27
  .IP "\(bu" 4
28
- \fBbump\fR Suggest next tag version\.
28
+ \fB\-p\fR, \fB\-\-point\fR Divide commit messages into commit points\.
29
29
  .
30
30
  .IP "\(bu" 4
31
- \fBautotag\fR Ensure a tag exists for each History entry\.
31
+ \fB\-v\fR, \fB\-\-version <VERSION>\fR Use as current version number\.
32
+ .
33
+ .IP "\(bu" 4
34
+ \fB\-t\fR, \fB\-\-title TITLE\fR Document title (for format that supports it)\.
35
+ .
36
+ .IP "\(bu" 4
37
+ \fB\-s\fR, `\-\-summary Omit change points\. (Applies only to release history report\.)
38
+ .
39
+ .IP "\(bu" 4
40
+ \fBi\fR, \fB\-\-id\fR Include revision/reference ids\. (Does not apply to xml/html formats\.)
41
+ .
42
+ .IP "\(bu" 4
43
+ \fB\-l\fR, \fB\-\-level <NUMBER>\fR Lowest level of commit to display, default is \fB0\fR\.
32
44
  .
33
45
  .IP "" 0
34
46
  .
35
47
  .P
36
- Both \fBchangelog\fR and \fBhistory\fR can be produced in a variety of formats\.
48
+ Both changelog and release history can be produced in a variety of formats\.
37
49
  .
38
50
  .SH "SEE ALSO"
39
- vclog\-changelog(1), vclog\-history(1), vclog\-version(1), vclog\-bump(1), vclog\-autotag(1)
51
+ vclog\-version(1), vclog\-bump(1), vclog\-autotag(1)
@@ -3,7 +3,7 @@
3
3
  <head>
4
4
  <meta http-equiv='content-type' value='text/html;charset=utf8'>
5
5
  <meta name='generator' value='Ronn/v0.7.3 (http://github.com/rtomayko/ronn/tree/0.7.3)'>
6
- <title>vclog(1) - version control logging utility</title>
6
+ <title>vclog(1) - version control logs</title>
7
7
  <style type='text/css' media='all'>
8
8
  /* style: man */
9
9
  body#manpage {margin:0}
@@ -62,7 +62,7 @@
62
62
  <a href="#NAME">NAME</a>
63
63
  <a href="#SYNOPSIS">SYNOPSIS</a>
64
64
  <a href="#DESCRIPTION">DESCRIPTION</a>
65
- <a href="#COMMANDS">COMMANDS</a>
65
+ <a href="#OPTIONS">OPTIONS</a>
66
66
  <a href="#SEE-ALSO">SEE ALSO</a>
67
67
  </div>
68
68
 
@@ -74,46 +74,55 @@
74
74
 
75
75
  <h2 id="NAME">NAME</h2>
76
76
  <p class="man-name">
77
- <code>vclog</code> - <span class="man-whatis">version control logging utility</span>
77
+ <code>vclog</code> - <span class="man-whatis">version control logs</span>
78
78
  </p>
79
79
 
80
80
  <h2 id="SYNOPSIS">SYNOPSIS</h2>
81
81
 
82
- <p><code>vclog [command]</code></p>
82
+ <p><code>vclog [options]</code></p>
83
83
 
84
84
  <h2 id="DESCRIPTION">DESCRIPTION</h2>
85
85
 
86
- <p>VCLog is a versitle cross-VCS/SCM changelog generator.
86
+ <p>VCLog is a versitle cross-VCS/SCM changelog and release history generator.
87
87
  It currently supports Git, Hg and (limited) Subversion.</p>
88
88
 
89
- <h2 id="COMMANDS">COMMANDS</h2>
89
+ <h2 id="OPTIONS">OPTIONS</h2>
90
90
 
91
- <p>VCLog provides a number of useful functions:</p>
91
+ <p>Note that not all formats support all options, and some formats use them
92
+ in variant manners.</p>
92
93
 
93
94
  <ul>
94
- <li><p><code>changelog</code>
95
- Produce a Change Log.</p></li>
96
- <li><p><code>history</code>
97
- Produce a Release History.</p></li>
98
- <li><p><code>version</code>
99
- Show current tag version.</p></li>
100
- <li><p><code>bump</code>
101
- Suggest next tag version.</p></li>
102
- <li><p><code>autotag</code>
103
- Ensure a tag exists for each History entry.</p></li>
95
+ <li><p><code>-f</code>, <code>--format &lt;FORMAT></code>
96
+ Output format (ansi, rdoc, html, etc.)</p></li>
97
+ <li><p><code>--style &lt;URI></code>
98
+ Provide a stylesheet URI, either css or xsl, for HTML or XML formats.</p></li>
99
+ <li><p><code>-d</code>, <code>--detail</code>
100
+ Include commit message details.</p></li>
101
+ <li><p><code>-p</code>, <code>--point</code>
102
+ Divide commit messages into commit points.</p></li>
103
+ <li><p><code>-v</code>, <code>--version &lt;VERSION></code>
104
+ Use as current version number.</p></li>
105
+ <li><p><code>-t</code>, <code>--title TITLE</code>
106
+ Document title (for format that supports it).</p></li>
107
+ <li><p><code>-s</code>, `--summary
108
+ Omit change points. (Applies only to release history report.)</p></li>
109
+ <li><p><code>i</code>, <code>--id</code>
110
+ Include revision/reference ids. (Does not apply to xml/html formats.)</p></li>
111
+ <li><p><code>-l</code>, <code>--level &lt;NUMBER></code>
112
+ Lowest level of commit to display, default is <code>0</code>.</p></li>
104
113
  </ul>
105
114
 
106
115
 
107
- <p>Both <code>changelog</code> and <code>history</code> can be produced in a variety of formats.</p>
116
+ <p>Both changelog and release history can be produced in a variety of formats.</p>
108
117
 
109
118
  <h2 id="SEE-ALSO">SEE ALSO</h2>
110
119
 
111
- <p><a href="vclog-changelog.1.html" class="man-ref">vclog-changelog<span class="s">(1)</span></a>, <a href="vclog-history.1.html" class="man-ref">vclog-history<span class="s">(1)</span></a>, <a href="vclog-version.1.html" class="man-ref">vclog-version<span class="s">(1)</span></a>, <a href="vclog-bump.1.html" class="man-ref">vclog-bump<span class="s">(1)</span></a>, <a href="vclog-autotag.1.html" class="man-ref">vclog-autotag<span class="s">(1)</span></a></p>
120
+ <p><a href="vclog-version.1.html" class="man-ref">vclog-version<span class="s">(1)</span></a>, <a href="vclog-bump.1.html" class="man-ref">vclog-bump<span class="s">(1)</span></a>, <a href="vclog-autotag.1.html" class="man-ref">vclog-autotag<span class="s">(1)</span></a></p>
112
121
 
113
122
 
114
123
  <ol class='man-decor man-foot man foot'>
115
124
  <li class='tl'>RubyWorks</li>
116
- <li class='tc'>November 2010</li>
125
+ <li class='tc'>December 2011</li>
117
126
  <li class='tr'>vclog(1)</li>
118
127
  </ol>
119
128
 
@@ -1,36 +1,49 @@
1
- vclog(1) - version control logging utility
2
- ==========================================
1
+ vclog(1) - version control logs
2
+ ===============================
3
3
 
4
4
  ## SYNOPSIS
5
5
 
6
- `vclog [command]`
6
+ `vclog [options]`
7
7
 
8
8
  ## DESCRIPTION
9
9
 
10
- VCLog is a versitle cross-VCS/SCM changelog generator.
10
+ VCLog is a versitle cross-VCS/SCM changelog and release history generator.
11
11
  It currently supports Git, Hg and (limited) Subversion.
12
12
 
13
- ## COMMANDS
13
+ ## OPTIONS
14
14
 
15
- VCLog provides a number of useful functions:
15
+ Note that not all formats support all options, and some formats use them
16
+ in variant manners.
16
17
 
17
- * `changelog`
18
- Produce a Change Log.
18
+ * `-f`, `--format <FORMAT>`
19
+ Output format (ansi, rdoc, html, etc.)
19
20
 
20
- * `history`
21
- Produce a Release History.
21
+ * `--style <URI>`
22
+ Provide a stylesheet URI, either css or xsl, for HTML or XML formats.
22
23
 
23
- * `version`
24
- Show current tag version.
24
+ * `-d`, `--detail`
25
+ Include commit message details.
25
26
 
26
- * `bump`
27
- Suggest next tag version.
27
+ * `-p`, `--point`
28
+ Divide commit messages into commit points.
28
29
 
29
- * `autotag`
30
- Ensure a tag exists for each History entry.
30
+ * `-v`, `--version <VERSION>`
31
+ Use as current version number.
31
32
 
32
- Both `changelog` and `history` can be produced in a variety of formats.
33
+ * `-t`, `--title TITLE`
34
+ Document title (for format that supports it).
35
+
36
+ * `-s`, `--summary
37
+ Omit change points. (Applies only to release history report.)
38
+
39
+ * `i`, `--id`
40
+ Include revision/reference ids. (Does not apply to xml/html formats.)
41
+
42
+ * `-l`, `--level <NUMBER>`
43
+ Lowest level of commit to display, default is `0`.
44
+
45
+ Both changelog and release history can be produced in a variety of formats.
33
46
 
34
47
  ## SEE ALSO
35
48
 
36
- vclog-changelog(1), vclog-history(1), vclog-version(1), vclog-bump(1), vclog-autotag(1)
49
+ vclog-version(1), vclog-bump(1), vclog-autotag(1)
@@ -4,7 +4,7 @@ require 'vclog/metadata'
4
4
  testcase "VCLog" do
5
5
 
6
6
  test "VERSION is set" do
7
- ::VCLog::VERSION.assert == File.read('profile/version').strip
7
+ ::VCLog::VERSION.assert == File.read('var/version').strip
8
8
  end
9
9
 
10
10
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: vclog
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.8.2
4
+ version: 1.9.0
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -9,11 +9,11 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2011-12-08 00:00:00.000000000 Z
12
+ date: 2011-12-12 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: facets
16
- requirement: &18134440 !ruby/object:Gem::Requirement
16
+ requirement: &24378380 !ruby/object:Gem::Requirement
17
17
  none: false
18
18
  requirements:
19
19
  - - ! '>='
@@ -21,10 +21,10 @@ dependencies:
21
21
  version: '2.4'
22
22
  type: :runtime
23
23
  prerelease: false
24
- version_requirements: *18134440
24
+ version_requirements: *24378380
25
25
  - !ruby/object:Gem::Dependency
26
26
  name: ansi
27
- requirement: &18133880 !ruby/object:Gem::Requirement
27
+ requirement: &24377800 !ruby/object:Gem::Requirement
28
28
  none: false
29
29
  requirements:
30
30
  - - ! '>='
@@ -32,10 +32,10 @@ dependencies:
32
32
  version: '1.2'
33
33
  type: :runtime
34
34
  prerelease: false
35
- version_requirements: *18133880
35
+ version_requirements: *24377800
36
36
  - !ruby/object:Gem::Dependency
37
37
  name: confection
38
- requirement: &18133420 !ruby/object:Gem::Requirement
38
+ requirement: &24377340 !ruby/object:Gem::Requirement
39
39
  none: false
40
40
  requirements:
41
41
  - - ! '>='
@@ -43,10 +43,21 @@ dependencies:
43
43
  version: '0'
44
44
  type: :runtime
45
45
  prerelease: false
46
- version_requirements: *18133420
46
+ version_requirements: *24377340
47
+ - !ruby/object:Gem::Dependency
48
+ name: rdoc
49
+ requirement: &24376800 !ruby/object:Gem::Requirement
50
+ none: false
51
+ requirements:
52
+ - - ! '>='
53
+ - !ruby/object:Gem::Version
54
+ version: '0'
55
+ type: :runtime
56
+ prerelease: false
57
+ version_requirements: *24376800
47
58
  - !ruby/object:Gem::Dependency
48
59
  name: xml-simple
49
- requirement: &18132880 !ruby/object:Gem::Requirement
60
+ requirement: &24376300 !ruby/object:Gem::Requirement
50
61
  none: false
51
62
  requirements:
52
63
  - - ! '>='
@@ -54,10 +65,10 @@ dependencies:
54
65
  version: '0'
55
66
  type: :runtime
56
67
  prerelease: false
57
- version_requirements: *18132880
68
+ version_requirements: *24376300
58
69
  - !ruby/object:Gem::Dependency
59
70
  name: detroit
60
- requirement: &18132380 !ruby/object:Gem::Requirement
71
+ requirement: &24375800 !ruby/object:Gem::Requirement
61
72
  none: false
62
73
  requirements:
63
74
  - - ! '>='
@@ -65,10 +76,10 @@ dependencies:
65
76
  version: '0'
66
77
  type: :development
67
78
  prerelease: false
68
- version_requirements: *18132380
79
+ version_requirements: *24375800
69
80
  - !ruby/object:Gem::Dependency
70
81
  name: citron
71
- requirement: &18131880 !ruby/object:Gem::Requirement
82
+ requirement: &24375300 !ruby/object:Gem::Requirement
72
83
  none: false
73
84
  requirements:
74
85
  - - ! '>='
@@ -76,10 +87,10 @@ dependencies:
76
87
  version: '0'
77
88
  type: :development
78
89
  prerelease: false
79
- version_requirements: *18131880
90
+ version_requirements: *24375300
80
91
  - !ruby/object:Gem::Dependency
81
92
  name: ae
82
- requirement: &18131380 !ruby/object:Gem::Requirement
93
+ requirement: &24374800 !ruby/object:Gem::Requirement
83
94
  none: false
84
95
  requirements:
85
96
  - - ! '>='
@@ -87,10 +98,10 @@ dependencies:
87
98
  version: '0'
88
99
  type: :development
89
100
  prerelease: false
90
- version_requirements: *18131380
101
+ version_requirements: *24374800
91
102
  - !ruby/object:Gem::Dependency
92
103
  name: cucumber
93
- requirement: &18130880 !ruby/object:Gem::Requirement
104
+ requirement: &24374300 !ruby/object:Gem::Requirement
94
105
  none: false
95
106
  requirements:
96
107
  - - ! '>='
@@ -98,10 +109,10 @@ dependencies:
98
109
  version: '0'
99
110
  type: :development
100
111
  prerelease: false
101
- version_requirements: *18130880
112
+ version_requirements: *24374300
102
113
  - !ruby/object:Gem::Dependency
103
114
  name: aruba
104
- requirement: &18130380 !ruby/object:Gem::Requirement
115
+ requirement: &24373800 !ruby/object:Gem::Requirement
105
116
  none: false
106
117
  requirements:
107
118
  - - ! '>='
@@ -109,19 +120,29 @@ dependencies:
109
120
  version: '0'
110
121
  type: :development
111
122
  prerelease: false
112
- version_requirements: *18130380
123
+ version_requirements: *24373800
113
124
  description: VCLog is a cross-VCS/SCM ChangeLog generator.
114
125
  email:
115
126
  - transfire@gmail.com
116
127
  executables:
128
+ - vclog-bump
117
129
  - vclog
130
+ - vclog-version
131
+ - vclog-autotag
132
+ - vclog-formats
118
133
  extensions: []
119
134
  extra_rdoc_files:
135
+ - HISTORY.rdoc
120
136
  - README.rdoc
121
137
  - COPYING.rdoc
122
138
  files:
123
139
  - .ruby
140
+ - .yardopts
124
141
  - bin/vclog
142
+ - bin/vclog-autotag
143
+ - bin/vclog-bump
144
+ - bin/vclog-formats
145
+ - bin/vclog-version
125
146
  - features/git.feature
126
147
  - features/hg.feature
127
148
  - features/step_definitions/history_steps.rb
@@ -138,27 +159,24 @@ files:
138
159
  - lib/vclog/adapters/svn.rb
139
160
  - lib/vclog/adapters.rb
140
161
  - lib/vclog/change.rb
162
+ - lib/vclog/change_point.rb
141
163
  - lib/vclog/changelog.rb
142
164
  - lib/vclog/cli/abstract.rb
143
165
  - lib/vclog/cli/autotag.rb
144
166
  - lib/vclog/cli/bump.rb
145
- - lib/vclog/cli/changelog.rb
146
167
  - lib/vclog/cli/formats.rb
147
- - lib/vclog/cli/help.rb
148
- - lib/vclog/cli/history.rb
168
+ - lib/vclog/cli/log.rb
149
169
  - lib/vclog/cli/version.rb
150
170
  - lib/vclog/cli.rb
151
- - lib/vclog/facets.rb
152
- - lib/vclog/formatter.rb
153
- - lib/vclog/heuristics/label.rb
171
+ - lib/vclog/core_ext.rb
154
172
  - lib/vclog/heuristics/rule.rb
173
+ - lib/vclog/heuristics/type.rb
155
174
  - lib/vclog/heuristics.rb
156
- - lib/vclog/history.rb
157
175
  - lib/vclog/history_file.rb
158
- - lib/vclog/kernel.rb
159
176
  - lib/vclog/metadata.rb
160
177
  - lib/vclog/release.rb
161
178
  - lib/vclog/repo.rb
179
+ - lib/vclog/report.rb
162
180
  - lib/vclog/tag.rb
163
181
  - lib/vclog/templates/changelog.ansi.rb
164
182
  - lib/vclog/templates/changelog.atom.erb
@@ -182,6 +200,7 @@ files:
182
200
  - lib/vclog/templates/history.xml.erb
183
201
  - lib/vclog/templates/history.yaml.rb
184
202
  - lib/vclog.rb
203
+ - lib/vclog.yml
185
204
  - man/man1/index.txt
186
205
  - man/man1/vclog-autotag.1
187
206
  - man/man1/vclog-autotag.1.html
@@ -189,12 +208,6 @@ files:
189
208
  - man/man1/vclog-bump.1
190
209
  - man/man1/vclog-bump.1.html
191
210
  - man/man1/vclog-bump.1.ronn
192
- - man/man1/vclog-changelog.1
193
- - man/man1/vclog-changelog.1.html
194
- - man/man1/vclog-changelog.1.ronn
195
- - man/man1/vclog-history.1
196
- - man/man1/vclog-history.1.html
197
- - man/man1/vclog-history.1.ronn
198
211
  - man/man1/vclog-version.1
199
212
  - man/man1/vclog-version.1.html
200
213
  - man/man1/vclog-version.1.ronn
@@ -203,6 +216,7 @@ files:
203
216
  - man/man1/vclog.1.ronn
204
217
  - test/unit/case_metadata.rb
205
218
  - test/unit/helper.rb
219
+ - HISTORY.rdoc
206
220
  - README.rdoc
207
221
  - COPYING.rdoc
208
222
  homepage: http://rubyworks.github.com/vclog