rtask 008 → 009

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. data/History.txt +4 -0
  2. data/README.txt +6 -2
  3. data/lib/rtask.rb +2 -2
  4. metadata +2 -2
@@ -1,3 +1,7 @@
1
+ == 009: 2008-04-22
2
+ * Keita Yamaguchi:
3
+ * Fixed publish task
4
+
1
5
  == 008: 2008-04-21
2
6
  * Keita Yamaguchi:
3
7
  * bin/rtask: Changed -p option from --package to --publish
data/README.txt CHANGED
@@ -1,7 +1,7 @@
1
1
  = RTask
2
2
 
3
3
  Author:: Keita Yamaguchi(山口 慶太) <keita.yamaguchi@gmail.com>
4
- Copyright:: © Keita Yamaguchi, 2007-2008. All rights reserved.
4
+ Copyright:: © Keita Yamaguchi, 2008. All rights reserved.
5
5
  License:: Ruby License
6
6
 
7
7
  RTask provides easy way to release Ruby’s gem packages. This also provides useful Rake tasks for releasing packages and uploading documents.
@@ -20,10 +20,14 @@ It's all.
20
20
 
21
21
  === How to publish API documentation
22
22
 
23
- % rtask --publish
23
+ % rtask -p
24
24
 
25
25
  It's all.
26
26
 
27
+ === How to clean generated files
28
+
29
+ % rtask -c
30
+
27
31
  == Links
28
32
 
29
33
  * RTask
@@ -24,7 +24,7 @@ require 'gemify'
24
24
  # rake tgz # Create the tgz package
25
25
  #
26
26
  class RTask
27
- VERSION = "008"
27
+ VERSION = "009"
28
28
  MESSAGE = Hash.new
29
29
 
30
30
  attr_reader :project, :package, :version
@@ -93,7 +93,7 @@ class RTask
93
93
  Rake::RDocTask.new do |doc|
94
94
  doc.title = "#{@package}-#{@version} documentation"
95
95
  doc.main = "README.txt"
96
- doc.rdoc_files.include("{README,History,License}.txt", "lib/*.rb")
96
+ doc.rdoc_files.include("{README,History,License}.txt", "lib/**/*.rb")
97
97
  doc.options << "--line-numbers" << "--inline-source" << "-c UTF-8"
98
98
  yield doc if block_given?
99
99
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rtask
3
3
  version: !ruby/object:Gem::Version
4
- version: 008
4
+ version: 009
5
5
  platform: ruby
6
6
  authors:
7
7
  - Keita Yamaguchi
@@ -9,7 +9,7 @@ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-04-21 00:00:00 +09:00
12
+ date: 2008-04-22 00:00:00 +09:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency