Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
racc / tasks / doc.rb
Size: Mime:
require 'rake/rdoctask'

Rake::RDocTask.new(:docs) do |rd|
  rd.main = "README.en.rdoc"
  rd.rdoc_files.include(SPEC.files.find_all { |file_name|
    file_name =~ /^(bin|lib|ext)/ || file_name !~ /\//
  })

  title = "#{SPEC.name}-#{SPEC.version} Documentation"

  rd.options << "-t #{title}"
end