aboutsummaryrefslogtreecommitdiffstats
path: root/railties
diff options
context:
space:
mode:
authorXavier Noria <fxn@hashref.com>2009-02-05 23:06:15 +0100
committerXavier Noria <fxn@hashref.com>2009-02-05 23:06:15 +0100
commit72a865f7932580a8e6a62efbfdce7c4db3378773 (patch)
tree779e97514e4c4f30ae6101f0b6204f9c9ebf1d9d /railties
parentee4b5a4e079899dd9f172c8e4d3b7cd6952664cf (diff)
downloadrails-72a865f7932580a8e6a62efbfdce7c4db3378773.tar.gz
rails-72a865f7932580a8e6a62efbfdce7c4db3378773.tar.bz2
rails-72a865f7932580a8e6a62efbfdce7c4db3378773.zip
added a convenience rake task for guides authors
Diffstat (limited to 'railties')
-rw-r--r--railties/Rakefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/railties/Rakefile b/railties/Rakefile
index 1130288fd9..05f767dc3b 100644
--- a/railties/Rakefile
+++ b/railties/Rakefile
@@ -244,6 +244,11 @@ def copy_with_rewritten_ruby_path(src_file, dest_file)
end
end
+desc 'Generate guides (for authors), use ONLY=foo to process just "foo.textile"'
+task :guides do
+ ruby "guides/rails_guides.rb"
+end
+
# Generate documentation ------------------------------------------------------------------