vclog 1.8.1 → 1.8.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.
Files changed (45) hide show
  1. data/.ruby +57 -0
  2. data/COPYING.rdoc +32 -0
  3. data/README.rdoc +18 -19
  4. data/features/git.feature +16 -16
  5. data/features/hg.feature +16 -16
  6. data/features/step_definitions/repo_steps.rb +2 -1
  7. data/features/support/aruba.rb +5 -1
  8. data/features/support/repo.rb +7 -3
  9. data/features/svn.feature +16 -16
  10. data/lib/vclog.rb +1 -1
  11. data/lib/vclog/adapters/abstract.rb +0 -19
  12. data/lib/vclog/adapters/git.rb +34 -6
  13. data/lib/vclog/adapters/svn.rb +1 -1
  14. data/lib/vclog/change.rb +43 -23
  15. data/lib/vclog/heuristics.rb +32 -49
  16. data/lib/vclog/heuristics/label.rb +29 -0
  17. data/lib/vclog/heuristics/rule.rb +33 -0
  18. data/lib/vclog/metadata.rb +2 -12
  19. data/lib/vclog/repo.rb +23 -19
  20. data/{ronn → man/man1}/index.txt +0 -0
  21. data/man/man1/vclog-autotag.1.html +117 -0
  22. data/{ronn/vclog-autotag.ronn → man/man1/vclog-autotag.1.ronn} +0 -0
  23. data/man/man1/vclog-bump.1.html +111 -0
  24. data/{ronn/vclog-bump.ronn → man/man1/vclog-bump.1.ronn} +0 -0
  25. data/man/man1/vclog-changelog.1.html +123 -0
  26. data/{ronn/vclog-changelog.ronn → man/man1/vclog-changelog.1.ronn} +0 -0
  27. data/man/man1/vclog-history.1.html +122 -0
  28. data/{ronn/vclog-history.ronn → man/man1/vclog-history.1.ronn} +0 -0
  29. data/man/man1/vclog-version.1.html +100 -0
  30. data/{ronn/vclog-version.ronn → man/man1/vclog-version.1.ronn} +0 -0
  31. data/man/man1/vclog.1.html +122 -0
  32. data/{ronn/vclog.ronn → man/man1/vclog.1.ronn} +0 -0
  33. data/test/unit/case_metadata.rb +11 -0
  34. data/test/unit/helper.rb +4 -0
  35. metadata +132 -122
  36. data/HISTORY.rdoc +0 -158
  37. data/LICENSE +0 -203
  38. data/lib/plugins/syckle/vclog.rb +0 -221
  39. data/lib/vclog/heuristics/default.rb +0 -24
  40. data/lib/vclog/meta/data.rb +0 -25
  41. data/lib/vclog/meta/package +0 -11
  42. data/lib/vclog/meta/profile +0 -18
  43. data/meta/data.rb +0 -25
  44. data/meta/package +0 -11
  45. data/meta/profile +0 -18
@@ -1,24 +0,0 @@
1
- set :major, 1, "Major Enhancements"
2
- set :bug, 0, "Bug Fixes"
3
- set :minor, -1, "Minor Enhancements"
4
- set :doc, -1, "Documentation Changes"
5
- set :admin, -2, "Administrative Changes"
6
-
7
- on /^(\w+):/ do |msg, md|
8
- word = md[1]
9
- [word.to_sym, md.post_match]
10
- end
11
-
12
- on /\[(\w+)\]\s*$/ do |msg, md|
13
- word = md[1]
14
- [word.to_sym, md.pre_match]
15
- end
16
-
17
- on /updated? (README|PROFILE|PACKAGE|VERSION|MANIFEST)/ do
18
- :admin
19
- end
20
-
21
- on /(bump|bumped|prepare) version/ do
22
- :admin
23
- end
24
-
@@ -1,25 +0,0 @@
1
- module VCLog
2
-
3
- def self.package
4
- @package ||= (
5
- require 'yaml'
6
- YAML.load(File.new(File.dirname(__FILE__) + '/package'))
7
- )
8
- end
9
-
10
- def self.profile
11
- @profile ||= (
12
- require 'yaml'
13
- YAML.load(File.new(File.dirname(__FILE__) + '/profile'))
14
- )
15
- end
16
-
17
- def self.const_missing(name)
18
- key = name.to_s.downcase
19
- package[key] || profile[key] || super(name)
20
- end
21
-
22
- # Prime version.
23
- VERSION = package['version']
24
- end
25
-
@@ -1,11 +0,0 @@
1
- name : vclog
2
- date : 2010-11-22
3
- version : 1.8.1
4
-
5
- requires:
6
- - facets 2.4+
7
- - ansi 1.2+
8
- - syckle (build)
9
- - cucumber (test)
10
- - aruba (test)
11
-
@@ -1,18 +0,0 @@
1
- ---
2
- title : VCLog
3
- suite : rubyworks
4
- summary : Cross-VCS/SCM ChangeLog Generator
5
- license : Apache 2.0
6
- contact : trans <transfire@gmail.com>
7
- created : 2006-05-09
8
- authors : Thomas Sawyer
9
-
10
- description:
11
- VCLog is a cross-VCS/SCM ChangeLog generator.
12
-
13
- resources:
14
- home: http://rubyworks.github.com/vclog
15
- code: http://github.com/rubyworks/vclog
16
- repo: git://github.com/proutils/vclog.git
17
-
18
- copyright: Copyright (c) 2009 Thomas Sawyer
@@ -1,25 +0,0 @@
1
- module VCLog
2
-
3
- def self.package
4
- @package ||= (
5
- require 'yaml'
6
- YAML.load(File.new(File.dirname(__FILE__) + '/package'))
7
- )
8
- end
9
-
10
- def self.profile
11
- @profile ||= (
12
- require 'yaml'
13
- YAML.load(File.new(File.dirname(__FILE__) + '/profile'))
14
- )
15
- end
16
-
17
- def self.const_missing(name)
18
- key = name.to_s.downcase
19
- package[key] || profile[key] || super(name)
20
- end
21
-
22
- # Prime version.
23
- VERSION = package['version']
24
- end
25
-
@@ -1,11 +0,0 @@
1
- name : vclog
2
- date : 2010-11-22
3
- version : 1.8.1
4
-
5
- requires:
6
- - facets 2.4+
7
- - ansi 1.2+
8
- - syckle (build)
9
- - cucumber (test)
10
- - aruba (test)
11
-
@@ -1,18 +0,0 @@
1
- ---
2
- title : VCLog
3
- suite : rubyworks
4
- summary : Cross-VCS/SCM ChangeLog Generator
5
- license : Apache 2.0
6
- contact : trans <transfire@gmail.com>
7
- created : 2006-05-09
8
- authors : Thomas Sawyer
9
-
10
- description:
11
- VCLog is a cross-VCS/SCM ChangeLog generator.
12
-
13
- resources:
14
- home: http://rubyworks.github.com/vclog
15
- code: http://github.com/rubyworks/vclog
16
- repo: git://github.com/proutils/vclog.git
17
-
18
- copyright: Copyright (c) 2009 Thomas Sawyer