history 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.ruby +67 -0
- data/HISTORY.md +11 -0
- data/LICENSE.txt +27 -0
- data/README.md +24 -0
- data/lib/history.rb +1 -0
- metadata +95 -0
data/.ruby
ADDED
@@ -0,0 +1,67 @@
|
|
1
|
+
---
|
2
|
+
source:
|
3
|
+
- var
|
4
|
+
authors:
|
5
|
+
- name: trans
|
6
|
+
email: transfire@gmail.com
|
7
|
+
copyrights:
|
8
|
+
- holder: Rubyworks
|
9
|
+
year: '2012'
|
10
|
+
license: BSD-2-Clause
|
11
|
+
requirements:
|
12
|
+
- name: detroit
|
13
|
+
groups:
|
14
|
+
- build
|
15
|
+
development: true
|
16
|
+
- name: qed
|
17
|
+
groups:
|
18
|
+
- test
|
19
|
+
development: true
|
20
|
+
- name: ae
|
21
|
+
groups:
|
22
|
+
- test
|
23
|
+
development: true
|
24
|
+
dependencies: []
|
25
|
+
alternatives: []
|
26
|
+
conflicts: []
|
27
|
+
repositories:
|
28
|
+
- uri: git://github.com/rubyworks/history.git
|
29
|
+
scm: git
|
30
|
+
name: upstream
|
31
|
+
resources:
|
32
|
+
- uri: http://rubyworks.github.com/history
|
33
|
+
label: Website
|
34
|
+
type: home
|
35
|
+
- uri: http://github.com/rubyworks/history
|
36
|
+
label: Source Code
|
37
|
+
type: code
|
38
|
+
- uri: http://github.com/rubyworks/history/issues
|
39
|
+
label: Issue Tracker
|
40
|
+
type: bugs
|
41
|
+
- uri: http://groups.google.com/groups/rubyworks-mailinglist
|
42
|
+
label: Mailing List
|
43
|
+
type: mail
|
44
|
+
- uri: irc://us.chat.freenode.net/rubyworks
|
45
|
+
label: IRC Channel
|
46
|
+
type: chat
|
47
|
+
categories: []
|
48
|
+
extra: {}
|
49
|
+
load_path:
|
50
|
+
- lib
|
51
|
+
revision: 0
|
52
|
+
name: history
|
53
|
+
title: History
|
54
|
+
created: '2010-02-19'
|
55
|
+
organization: Rubyworks
|
56
|
+
summary: HISTORY and CHANGELOG parser
|
57
|
+
version: 0.1.0
|
58
|
+
description: ! 'History is a HISTORY and CHANGELOG file parser. It can parse common
|
59
|
+
layouts for these
|
60
|
+
|
61
|
+
file types and provide their contents in a structured model. This can be useful
|
62
|
+
for
|
63
|
+
|
64
|
+
a number of things, in particular it can be used to generate tag messages and add
|
65
|
+
|
66
|
+
pre-release changelogs to relase announcements.'
|
67
|
+
date: '2012-05-24'
|
data/HISTORY.md
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
History - HISTORY and CHANGELOG Parser
|
2
|
+
(http://rubyworks.github.com/history)
|
3
|
+
|
4
|
+
Copyright (c) 2012 Rubyworks, Thomas Sawyer
|
5
|
+
|
6
|
+
Redistribution and use in source and binary forms, with or without
|
7
|
+
modification, are permitted provided that the following conditions are met:
|
8
|
+
|
9
|
+
* Redistributions of source code must retain the above copyright notice,
|
10
|
+
this list of conditions and the following disclaimer.
|
11
|
+
|
12
|
+
* Redistributions in binary form must reproduce the above copyright notice,
|
13
|
+
this list of conditions and the following disclaimer in the documentation
|
14
|
+
and/or other materials provided with the distribution.
|
15
|
+
|
16
|
+
THIS SOFTWARE IS PROVIDED BY Thomas Sawyer ``AS IS'' AND ANY EXPRESS
|
17
|
+
OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
18
|
+
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
|
19
|
+
NO EVENT SHALL Thomas Sawyer OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
20
|
+
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
21
|
+
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
22
|
+
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
23
|
+
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
24
|
+
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
|
25
|
+
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
26
|
+
|
27
|
+
(spdx) BSD-2-Clause License
|
data/README.md
ADDED
@@ -0,0 +1,24 @@
|
|
1
|
+
# History
|
2
|
+
|
3
|
+
[Homepage](http://rubyworks.github.com/history) /
|
4
|
+
[Source Code](http://github.com/rubyworks/history) /
|
5
|
+
[Report Issue](http://github.com/rubyworks/history/issues) /
|
6
|
+
[Mailing List](http://groups.google.com/groups/rubyworks-mailinglist) /
|
7
|
+
[IRC Channel](irc://us.chat.freenode.net/rubyworks)
|
8
|
+
|
9
|
+
|
10
|
+
## Description
|
11
|
+
|
12
|
+
History is a HISTORY and CHANGELOG file parser. It can parse common layouts for these
|
13
|
+
file types and provide their contents in a structured model. This can be useful for
|
14
|
+
a number of things, in particular it can be used to generate tag messages and add
|
15
|
+
pre-release changelogs to relase announcements.
|
16
|
+
|
17
|
+
|
18
|
+
## Copyrights
|
19
|
+
|
20
|
+
Copyright (c) 2012 Rubyworks. All rights reserved.
|
21
|
+
|
22
|
+
History is distributable in accordance with the BSD-2-Clause license.
|
23
|
+
|
24
|
+
See LICENSE.txt file for details.
|
data/lib/history.rb
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
# TODO
|
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: history
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- trans
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2012-05-24 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: detroit
|
16
|
+
requirement: &23265980 !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :development
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: *23265980
|
25
|
+
- !ruby/object:Gem::Dependency
|
26
|
+
name: qed
|
27
|
+
requirement: &23264740 !ruby/object:Gem::Requirement
|
28
|
+
none: false
|
29
|
+
requirements:
|
30
|
+
- - ! '>='
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: '0'
|
33
|
+
type: :development
|
34
|
+
prerelease: false
|
35
|
+
version_requirements: *23264740
|
36
|
+
- !ruby/object:Gem::Dependency
|
37
|
+
name: ae
|
38
|
+
requirement: &23263820 !ruby/object:Gem::Requirement
|
39
|
+
none: false
|
40
|
+
requirements:
|
41
|
+
- - ! '>='
|
42
|
+
- !ruby/object:Gem::Version
|
43
|
+
version: '0'
|
44
|
+
type: :development
|
45
|
+
prerelease: false
|
46
|
+
version_requirements: *23263820
|
47
|
+
description: ! 'History is a HISTORY and CHANGELOG file parser. It can parse common
|
48
|
+
layouts for these
|
49
|
+
|
50
|
+
file types and provide their contents in a structured model. This can be useful
|
51
|
+
for
|
52
|
+
|
53
|
+
a number of things, in particular it can be used to generate tag messages and add
|
54
|
+
|
55
|
+
pre-release changelogs to relase announcements.'
|
56
|
+
email:
|
57
|
+
- transfire@gmail.com
|
58
|
+
executables: []
|
59
|
+
extensions: []
|
60
|
+
extra_rdoc_files:
|
61
|
+
- LICENSE.txt
|
62
|
+
- HISTORY.md
|
63
|
+
- README.md
|
64
|
+
files:
|
65
|
+
- .ruby
|
66
|
+
- lib/history.rb
|
67
|
+
- LICENSE.txt
|
68
|
+
- HISTORY.md
|
69
|
+
- README.md
|
70
|
+
homepage: http://rubyworks.github.com/history
|
71
|
+
licenses:
|
72
|
+
- BSD-2-Clause
|
73
|
+
post_install_message:
|
74
|
+
rdoc_options: []
|
75
|
+
require_paths:
|
76
|
+
- lib
|
77
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
78
|
+
none: false
|
79
|
+
requirements:
|
80
|
+
- - ! '>='
|
81
|
+
- !ruby/object:Gem::Version
|
82
|
+
version: '0'
|
83
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
84
|
+
none: false
|
85
|
+
requirements:
|
86
|
+
- - ! '>='
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0'
|
89
|
+
requirements: []
|
90
|
+
rubyforge_project:
|
91
|
+
rubygems_version: 1.8.11
|
92
|
+
signing_key:
|
93
|
+
specification_version: 3
|
94
|
+
summary: HISTORY and CHANGELOG parser
|
95
|
+
test_files: []
|