reap 9.3.4 → 9.3.5

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.
data/MANIFEST CHANGED
@@ -84,6 +84,7 @@ data/reap/base/CHANGES
84
84
  data/reap/base/README.erb
85
85
  data/reap/base/setup.rb
86
86
  data/reap/base/meta
87
+ data/reap/base/meta/version
87
88
  data/reap/base/meta/unixname.erb
88
89
  data/reap/base/lib
89
90
  data/reap/base/data
@@ -3,17 +3,14 @@
3
3
  * Started project.
4
4
 
5
5
 
6
-
7
- # NOTE:
8
- #
9
- # Keep a running list of changes by version and date here.
10
- # This is uploaded as the ChangeLog in the release process.
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
- # If you want to use the SCM log anyway, you can of course
16
- # do so. Just "cp log/Changelog.txt CHANGES" prior to release.
17
- # (We might provide an automated option for this in the
18
- # future, but for now its a manual task.)
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
- <%= package %>
1
+ <%= project %>
@@ -0,0 +1 @@
1
+ 0.0.0 alpha (2008-02-21)
@@ -1,26 +1,28 @@
1
1
  ---
2
2
  project : foo
3
- contact : Your Name <yourmail@foomail.com>
3
+
4
+ contact : Your Name <email@email.com>
4
5
  license : GPLv3
5
- created : 2005-08-09
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 Here
11
+ title : Project Title
11
12
 
12
13
  # One line description.
13
- brief : Foo Foo the Rabbit
14
+ brief : One line description
14
15
 
15
16
  # Detailed description.
16
17
  description: >
17
- Little rabbit Foo Foo was hoping through the forest.
18
- Picking up field mice and bopping them on the head.
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 : [ pkg, work, doc, ri ]
23
+ exclude : [ work, doc, ri ]
22
24
 
23
25
  # List of dependenices with version constraints.
24
26
  dependency :
25
- - [facets, '>= 2.1.0']
27
+ - [facets, '>= 2.3.0']
26
28
 
@@ -37,7 +37,7 @@
37
37
  labels: [TODO, FIXME, OPTIMIZE] # Note labels to scan.
38
38
 
39
39
  package:
40
- formats: [zip, gem] # Package formats to create (gem, zip, tgz)
40
+ formats: [tgz, gem] # Package formats to create (gem, zip, tgz)
41
41
 
42
42
  publish:
43
43
  source: site # Directory to publish.
@@ -38,7 +38,8 @@ module Reap
38
38
  version = options['version']
39
39
  status = options['status']
40
40
 
41
- bump = [options['major'], options['minor'], options['tiny'], options['teeny']]
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.any?{ |x| x }
51
+ if bump
51
52
  points = []
52
53
  version.to_s.split(/[.]/).each_with_index do |x, i|
53
- points[i] = (bump[i] ? x.to_i + 1 : x).to_s
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? (88)
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.4 beta (2008-02-20)
1
+ 9.3.5 beta (2008-02-21)
data/setup.rb CHANGED
@@ -444,6 +444,9 @@ module Setup
444
444
  desc 'Compiles ruby extentions'
445
445
  task :setup do exec_setup end
446
446
 
447
+ desc 'Runs unit tests'
448
+ task :test do exec_test end
449
+
447
450
  desc 'Generate html api docs'
448
451
  task :doc do exec_doc end
449
452
 
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
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-20 00:00:00 -05:00
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