reap 9.3.4 → 9.3.5
Sign up to get free protection for your applications and to get access to all the features.
- data/MANIFEST +1 -0
- data/data/reap/base/CHANGES +9 -12
- data/data/reap/base/NOTES +4 -10
- data/data/reap/base/meta/unixname.erb +1 -1
- data/data/reap/base/meta/version +1 -0
- data/data/reap/init/meta/project.yaml +10 -8
- data/lib/reap/default.yaml +1 -1
- data/lib/reap/project/version.rb +4 -3
- data/log/Changelog.txt +10 -0
- data/log/Todo.txt +1 -1
- data/meta/VERSION +1 -1
- data/setup.rb +3 -0
- metadata +3 -2
data/MANIFEST
CHANGED
data/data/reap/base/CHANGES
CHANGED
@@ -3,17 +3,14 @@
|
|
3
3
|
* Started project.
|
4
4
|
|
5
5
|
|
6
|
-
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
# It's better to keep a manual log, rather then use the log
|
12
|
-
# generated by the SCM because the SCM log will have gritty
|
13
|
-
# details with which end-users will not be concerned.
|
6
|
+
# Keep a running list of changes by version and date here.
|
7
|
+
# This is uploaded as the ChangeLog in the release process.
|
8
|
+
# It's better to keep a manual log, rather then use the log
|
9
|
+
# generated by the SCM because the SCM log will have gritty
|
10
|
+
# details with which end-users will not be concerned.
|
14
11
|
#
|
15
|
-
#
|
16
|
-
#
|
17
|
-
#
|
18
|
-
#
|
12
|
+
# If you want to use the SCM log anyway, you can of course
|
13
|
+
# do so. Just "cp log/Changelog.txt CHANGES" prior to release.
|
14
|
+
# (We might provide an automated option for this in the
|
15
|
+
# future, but for now its a manual task.)
|
19
16
|
|
data/data/reap/base/NOTES
CHANGED
@@ -1,12 +1,6 @@
|
|
1
|
-
Foo 0.0.0 has been release!
|
2
|
-
|
3
|
-
|
4
|
-
# NOTE:
|
5
|
-
#
|
6
|
-
# This is a place to put release notes.
|
7
|
-
# Like CHANGES this is also uploaded in the release process.
|
8
|
-
# This is good place to mention major changes and things
|
9
|
-
# users might need to do to take them into account.
|
10
|
-
# (BE SURE TO DELETE THIS NOTE!)
|
11
1
|
|
2
|
+
# This is a place to put release notes.
|
3
|
+
# Like CHANGES this is also uploaded in the release process.
|
4
|
+
# This is good place to mention major changes and things
|
5
|
+
# users might need to do to take them into account.
|
12
6
|
|
@@ -1 +1 @@
|
|
1
|
-
<%=
|
1
|
+
<%= project %>
|
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0 alpha (2008-02-21)
|
@@ -1,26 +1,28 @@
|
|
1
1
|
---
|
2
2
|
project : foo
|
3
|
-
|
3
|
+
|
4
|
+
contact : Your Name <email@email.com>
|
4
5
|
license : GPLv3
|
5
|
-
created :
|
6
|
+
created : 2008-02-21
|
6
7
|
homepage : http://orphans.rubyforge.org
|
7
8
|
repository : http://orphans.rubyforge.org/svn
|
8
9
|
|
9
10
|
# Title. This defaults to project capitalized, if not given.
|
10
|
-
title : Project Title
|
11
|
+
title : Project Title
|
11
12
|
|
12
13
|
# One line description.
|
13
|
-
brief :
|
14
|
+
brief : One line description
|
14
15
|
|
15
16
|
# Detailed description.
|
16
17
|
description: >
|
17
|
-
Little rabbit Foo Foo was hoping
|
18
|
-
Picking up field mice and bopping
|
18
|
+
Detailed description...Little rabbit Foo Foo was hoping
|
19
|
+
through the forest. Picking up field mice and bopping
|
20
|
+
them on the head.
|
19
21
|
|
20
22
|
# Directories to exclude from package.
|
21
|
-
exclude : [
|
23
|
+
exclude : [ work, doc, ri ]
|
22
24
|
|
23
25
|
# List of dependenices with version constraints.
|
24
26
|
dependency :
|
25
|
-
- [facets, '>= 2.
|
27
|
+
- [facets, '>= 2.3.0']
|
26
28
|
|
data/lib/reap/default.yaml
CHANGED
@@ -37,7 +37,7 @@
|
|
37
37
|
labels: [TODO, FIXME, OPTIMIZE] # Note labels to scan.
|
38
38
|
|
39
39
|
package:
|
40
|
-
formats: [
|
40
|
+
formats: [tgz, gem] # Package formats to create (gem, zip, tgz)
|
41
41
|
|
42
42
|
publish:
|
43
43
|
source: site # Directory to publish.
|
data/lib/reap/project/version.rb
CHANGED
@@ -38,7 +38,8 @@ module Reap
|
|
38
38
|
version = options['version']
|
39
39
|
status = options['status']
|
40
40
|
|
41
|
-
|
41
|
+
bumps = [ options['major'], options['minor'], options['tiny'], options['teeny'] ]
|
42
|
+
bump = bumps.any?{|x|x}
|
42
43
|
|
43
44
|
abort "Specify bumps or version, not both." if bump and version
|
44
45
|
|
@@ -47,10 +48,10 @@ module Reap
|
|
47
48
|
version = version || metadata.version || '0.0.0'
|
48
49
|
status = status || metadata.status || '0.0.0'
|
49
50
|
|
50
|
-
if bump
|
51
|
+
if bump
|
51
52
|
points = []
|
52
53
|
version.to_s.split(/[.]/).each_with_index do |x, i|
|
53
|
-
points[i] = (
|
54
|
+
points[i] = (bumps[i] ? x.to_i + 1 : x).to_s
|
54
55
|
end
|
55
56
|
version = points.join('.').sub(/[.0]$/,'')
|
56
57
|
else
|
data/log/Changelog.txt
CHANGED
@@ -1,7 +1,17 @@
|
|
1
1
|
= Subversion Changelog
|
2
2
|
|
3
|
+
== 2008-02-21 transami
|
4
|
+
|
5
|
+
* Added test to Rakfile. (227)
|
6
|
+
* Fixed bug in version task. (226)
|
7
|
+
* Added screencast to website. (225)
|
8
|
+
* Added meta/version to scaffolding. (224)
|
9
|
+
* Minor touchups to scaffolding. (223)
|
10
|
+
|
3
11
|
== 2008-02-20 transami
|
4
12
|
|
13
|
+
* Fixed lib/reap/project/version.rb from not aborting if bump AND version. (222)
|
14
|
+
* Updated logs. (221)
|
5
15
|
* Fixed extconfopt option in setup.rb. (220)
|
6
16
|
* More improvements to the website. (219)
|
7
17
|
* Improved announcement. It no longer uses the README by default. (218)
|
data/log/Todo.txt
CHANGED
@@ -60,7 +60,7 @@ file://lib/reap/project/test.rb
|
|
60
60
|
file://lib/reap/project/version.rb
|
61
61
|
* TODO: Should we also update a lib/version.rb file? (33)
|
62
62
|
* TODO: Stamp .roll if roll file exists.
|
63
|
-
should we read current .roll file and use as defaults? (
|
63
|
+
should we read current .roll file and use as defaults? (89)
|
64
64
|
* TODO: Considerding createing a standard status marker (a=alpha, b=beta, r=release candidate)
|
65
65
|
So a version would read, eg. 1.2.4a, or with status number, eg. 1.2.4r1). (34)
|
66
66
|
|
data/meta/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
9.3.
|
1
|
+
9.3.5 beta (2008-02-21)
|
data/setup.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: reap
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 9.3.
|
4
|
+
version: 9.3.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Thomas Sawyer <transfire@gmail.com>
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-02-
|
12
|
+
date: 2008-02-21 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
@@ -156,6 +156,7 @@ files:
|
|
156
156
|
- data/reap/base/README.erb
|
157
157
|
- data/reap/base/setup.rb
|
158
158
|
- data/reap/base/meta
|
159
|
+
- data/reap/base/meta/version
|
159
160
|
- data/reap/base/meta/unixname.erb
|
160
161
|
- data/reap/base/lib
|
161
162
|
- data/reap/base/data
|