public
Rubygem
Description: A RESTful CouchDB client based on Heroku's RestClient and Couch.js
Homepage: http://jchris.lighthouseapp.com/projects/17807-couchrest/overview
Clone URL: git://github.com/jchris/couchrest.git
updated rake for rdoc
jchris (author)
Thu Sep 11 22:21:16 -0700 2008
commit  c7fae2eca92dad89a2a1020600f790a800abe470
tree    ef46f48d1823f4137d4d8245cb08f57ebcc292a6
parent  b051cdd3a2981bec183c6e18631160b330d1cc23
...
1
 
2
...
1
2
3
0
@@ -1 +1,2 @@
0
 .DS_Store
0
+html/*
0
\ No newline at end of file
...
1
 
2
3
4
...
12
13
14
 
 
 
 
 
 
 
 
 
 
15
...
1
2
3
4
5
...
13
14
15
16
17
18
19
20
21
22
23
24
25
26
0
@@ -1,4 +1,5 @@
0
 require 'rake'
0
+require "rake/rdoctask"
0
 require 'spec/rake/spectask'
0
 
0
 desc "Run all specs"
0
@@ -12,4 +13,14 @@ Spec::Rake::SpecTask.new(:doc) do |t|
0
   t.spec_files = FileList['spec/*_spec.rb']
0
 end
0
 
0
+desc "Generate the rdoc"
0
+Rake::RDocTask.new do |rdoc|
0
+ files = ["README.rdoc", "LICENSE", "lib/**/*.rb"]
0
+ rdoc.rdoc_files.add(files)
0
+ rdoc.main = "README.rdoc"
0
+ rdoc.title = "CouchRest: Ruby CouchDB, close to the metal"
0
+ # rdoc.rdoc_dir = "doc/rdoc"
0
+ # rdoc.options << "--line-numbers" << "--inline-source"
0
+end
0
+
0
 task :default => :spec

Comments

    No one has commented yet.