diff options
author | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-07-20 17:55:27 +0200 |
---|---|---|
committer | Hongli Lai (Phusion) <hongli@phusion.nl> | 2008-07-20 17:55:27 +0200 |
commit | 90f8b192f70a3560f6f86e8eb73432011364ac5d (patch) | |
tree | dac4d280b839b18f94d9284bd93f9c30f7ed84ce /railties/Rakefile | |
parent | 48ab28299a20c00f8c216a335c8c338fd8c34f3c (diff) | |
download | rails-90f8b192f70a3560f6f86e8eb73432011364ac5d.tar.gz rails-90f8b192f70a3560f6f86e8eb73432011364ac5d.tar.bz2 rails-90f8b192f70a3560f6f86e8eb73432011364ac5d.zip |
Convert 'creating plugins' guide to asciidoc format.
Diffstat (limited to 'railties/Rakefile')
-rw-r--r-- | railties/Rakefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/railties/Rakefile b/railties/Rakefile index 813908cf8b..540bce3741 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -272,13 +272,13 @@ Rake::RDocTask.new { |rdoc| rdoc.rdoc_files.include('lib/commands/**/*.rb') } -guides = ['securing_rails_applications', 'testing_rails_applications'] +guides = ['securing_rails_applications', 'testing_rails_applications', 'creating_plugins'] guides_html_files = [] guides.each do |guide_name| input = "doc/guides/#{guide_name}/#{guide_name}.txt" output = "doc/guides/#{guide_name}/#{guide_name}.html" guides_html_files << output - task output => Dir["doc/guides/#{guide_name}/*.txt"] do + file output => Dir["doc/guides/#{guide_name}/*.txt"] do sh "mizuho", input, "--template", "manualsonrails", "--multi" end end |