summaryrefslogtreecommitdiff
path: root/Rookbook.yaml
diff options
context:
space:
mode:
author(no author) <(no author)@c9e70521-770b-0410-b9ac-ce6205b42a9f>2007-02-06 12:56:07 +0000
committer(no author) <(no author)@c9e70521-770b-0410-b9ac-ce6205b42a9f>2007-02-06 12:56:07 +0000
commit0129aafbb64cb552c35dc62a4fe319608cdbfdf1 (patch)
tree9d1e4f0f5c4d804f9af884f327cadeb23d880840 /Rookbook.yaml
parent1bb46a76a4cbaba2811969db0bc3a71568ce8a02 (diff)
downloaderubis-0129aafbb64cb552c35dc62a4fe319608cdbfdf1.tar.gz
- [change] 'helpers/rails.rb' is renamed to 'helpers/rails_helper.rb'
Diffstat (limited to 'Rookbook.yaml')
-rw-r--r--Rookbook.yaml18
1 files changed, 11 insertions, 7 deletions
diff --git a/Rookbook.yaml b/Rookbook.yaml
index 63151f2..6041df6 100644
--- a/Rookbook.yaml
+++ b/Rookbook.yaml
@@ -5,13 +5,13 @@
###
properties:
- - release : 0.0.0
+ - release : 2.2.0
parameters:
- project : erubis
- copyright : copyright(c) 2006 kuwata-lab all rights reserved.
- - text_files : [ChangeLog, README.txt, LGPL, setup.rb, erubis.gemspec]
+ - text_files : [CHANGES, README.txt, MIT-LICENSE, setup.rb, erubis.gemspec]
- guide : doc/users-guide.html
- doc_files : [$(guide), doc/docstyle.css]
- apidocdir : doc-api
@@ -52,7 +52,7 @@ recipes:
ingreds: [ $(apidocdir)/index.html ]
- product: $(apidocdir)/index.html
- ingreds: [ $(libfiles) ]
+ ingreds: [ $(libfiles), README.txt ]
method*: |
rm_rf '$(apidocdir)'
opts = "-o ../$(apidocdir) -S -m ../README.txt"
@@ -73,21 +73,24 @@ recipes:
ingreds: [ $(project)_$(1) ]
method*: |
rm_f @product if test(?f, @product)
- tar_cjf @product, @ingred
+ #tar_cjf @product, @ingred
+ sys "tar cjf #{@product} #{@ingred}"
- product: $(project)_*.tar.gz
desc: create *.tar.gz
ingreds: [ $(project)_$(1) ]
method*: |
rm_f @product if test(?f, @product)
- tar_czf @product, @ingred
+ #tar_czf @product, @ingred
+ sys "tar czf #{@product} #{@ingred}"
- product: $(project)_*.zip
desc: create *.zip
ingreds: [ $(project)_$(1) ]
method*: |
rm_f @product if test(?f, @product)
- zip_r @product, @ingred
+ #zip_r @product, @ingred
+ sys "zip -r9 #{@product} #{@ingred}"
- product: $(project)-*.gem
@@ -133,7 +136,8 @@ recipes:
mkdir_p "#{dir}/doc"
cp_r doc_files, "#{dir}/doc"
#
- mkdir_p "#{dir}/contrib"
+ store 'contrib/*', dir
+ #mkdir_p "#{dir}/contrib"
cp_r '$(inline_require_script)', "#{dir}/contrib"
#
edit "#{dir}/**/*" do |content|