diff options
author | George Ogata <george.ogata@gmail.com> | 2009-01-22 12:11:32 +1100 |
---|---|---|
committer | George Ogata <george.ogata@gmail.com> | 2009-01-22 12:11:32 +1100 |
commit | db8efc90484412fec2c739c7e58d19537a1c803b (patch) | |
tree | dc8a8be345d3f7b2e0bcfd584d6f2c3bade17822 /railties/Rakefile | |
parent | e89138a31b7c0bcf94d4c11b1f47af3d4f57024c (diff) | |
parent | 8ad2f93a309e57e67286e0c4426b1ad003b9b33b (diff) | |
download | rails-db8efc90484412fec2c739c7e58d19537a1c803b.tar.gz rails-db8efc90484412fec2c739c7e58d19537a1c803b.tar.bz2 rails-db8efc90484412fec2c739c7e58d19537a1c803b.zip |
Merge branch 'master' of git@github.com:lifo/docrails
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 be0f449efc..30d3748441 100644 --- a/railties/Rakefile +++ b/railties/Rakefile @@ -285,7 +285,7 @@ task :guides do asciidoc_conf = 'doc/guides/asciidoc.conf' ignore = ['..', 'icons', 'images', 'templates', 'stylesheets'] - ignore << 'active_record_basics.txt' + #ignore << 'active_record_basics.txt' indexless = ['index.txt', 'authors.txt'] @@ -301,7 +301,7 @@ task :guides do end entries.each do |entry| - next if ignore.include?(entry) + next if ignore.include?(entry) or entry =~ /^\./ # because Vim is always saving hidden swap files if File.directory?(File.join(source, entry)) # If the current entry is a directory, then we will want to compile |