mirror of https://github.com/rails/rails
revises the pattern that excludes generator templates in API generation
With the previous pattern RDoc processed railties/lib/rails/generators/rails/plugin_new/templates/test/%name%_test.rb and that resulted in a spurious "<" class.
This commit is contained in:
parent
e591d14b9c
commit
de757af8b0
2
Rakefile
2
Rakefile
|
@ -72,7 +72,7 @@ RDoc::Task.new do |rdoc|
|
|||
rdoc.rdoc_files.include('railties/MIT-LICENSE')
|
||||
rdoc.rdoc_files.include('railties/README.rdoc')
|
||||
rdoc.rdoc_files.include('railties/lib/**/*.rb')
|
||||
rdoc.rdoc_files.exclude('railties/lib/rails/generators/**/templates/*')
|
||||
rdoc.rdoc_files.exclude('railties/lib/rails/generators/**/templates/**/*.rb')
|
||||
|
||||
rdoc.rdoc_files.include('activerecord/README.rdoc')
|
||||
rdoc.rdoc_files.include('activerecord/CHANGELOG')
|
||||
|
|
Loading…
Reference in New Issue