Sha256: fb2acd29ebd74ab3496d3df5de0b1ffe160f8b692bc8092c92413c974f2b98a0
Contents?: true
Size: 555 Bytes
Versions: 23
Compression:
Stored size: 555 Bytes
Contents
# when yard's ready, it'll have to come back, but for now... Rake::RDocTask.new("doc") do |t| t.rdoc_dir = 'doc' t.title = "DataMapper - Ruby Object Relational Mapper" t.options = ['--line-numbers', '--inline-source', '--all'] t.rdoc_files.include("README.txt", "QUICKLINKS", "FAQ", "lib/**/**/*.rb") end begin gem 'yard', '>=0.2.1' require 'yard' YARD::Rake::YardocTask.new("yardoc") do |t| t.options << '--protected' # t.options << '-q' # t.files << '...anyglobshere...' end rescue Exception # yard not installed end
Version data entries
23 entries across 23 versions & 6 rubygems