public
Description: Ruby replacement for bash+ssh
Homepage: http://rush.heroku.com/
Clone URL: git://github.com/adamwiggins/rush.git
rdoc skeleton
adamwiggins (author)
Tue Feb 19 17:32:42 -0800 2008
commit  cfbe1f791d22498ca332f087ff6b139560517ad0
tree    dea5dafbde63297aa2342af54e507e1c781ae393
parent  21c5c4e61a838e1b3aa91e3e808eb21ddb36856d
...
46
47
48
49
 
50
51
52
...
72
73
74
 
 
 
 
 
 
 
 
 
 
75
76
...
46
47
48
 
49
50
51
52
...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
0
@@ -46,7 +46,7 @@ spec = Gem::Specification.new do |s|
0
   s.rubyforge_project = "ruby-shell"
0
 
0
   s.platform = Gem::Platform::RUBY
0
- s.has_rdoc = false
0
+ s.has_rdoc = true
0
   
0
   s.files = %w(Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
0
   
0
@@ -72,5 +72,15 @@ Rake::TestTask.new do |t|
0
   t.verbose = true
0
 end
0
 
0
+Rake::RDocTask.new do |t|
0
+ t.rdoc_dir = 'doc'
0
+ t.title = "rush, a Ruby replacement for bash+ssh"
0
+ t.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
0
+ t.options << '--charset' << 'utf-8'
0
+ t.rdoc_files.include('README')
0
+ t.rdoc_files.include('lib/rush.rb')
0
+ t.rdoc_files.include('lib/rush/*.rb')
0
+end
0
+
0
 CLEAN.include [ 'pkg', '*.gem', '.config' ]
0
 

Comments

    No one has commented yet.