海事组织是环绕的。 这里指的是:
Nutshell版本:
• 开展铁路图书馆名录的“应用”任务,例如,我使用:
~/.rvm/gems/ruby-1.9.2-p0@foo/gems/railties-3.0.9/lib/rails/tasks/documentation.rake
你们需要考虑(大约)这一点:
namespace :doc do
def gem_path(gem_name)
path = $LOAD_PATH.grep(/#{gem_name}[w.-]*/lib$/).first
yield File.dirname(path) if path
end
RDocTaskWithoutDescriptions.new("app2") { |rdoc|
rdoc.rdoc_dir = doc/app
rdoc.template = ENV[ template ] if ENV[ template ]
rdoc.title = ENV[ title ] || "Rails Application Documentation"
rdoc.options << --line-numbers << --inline-source
rdoc.options << --charset << utf-8
rdoc.rdoc_files.include( doc/*_FOR_APP ) # Modified this line
rdoc.rdoc_files.include( app/**/*.rb )
rdoc.rdoc_files.include( lib/**/*.rb )
}
end
页: 1
Update the task name if you want to keep the original, e.g., "app2"
.
更新<代码>doc/README_FOR_APP>,说明范围更广的模式,或增加处理的新档案。
创建<条码>doc/Cheatsheet_FOR_APP和新的<条码>rake doc:app2 这项任务将继续下去。