Sha256: 2e045ae05749cb2e1305239f415e076a681aae7c79267b691a4e838507260bd1

Contents?: true

Size: 416 Bytes

Versions: 11

Compression:

Stored size: 416 Bytes

Contents

require 'rake'
require 'rake/rdoctask'
 
desc "Generate RDoc documentation"
Rake::RDocTask.new(:rdoc) do |rdoc|
  rdoc.options << '--line-numbers' << '--inline-source' <<
    '--main' << 'README.md' <<
    '--title' << 'Shinmun Documentation' <<
    '--charset' << 'utf-8'
  rdoc.rdoc_dir = "doc"
  rdoc.rdoc_files.include 'README.md'
  Dir['lib/**/*.rb'].each do |file|
    rdoc.rdoc_files.include file
  end
end


Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
georgi-shinmun-0.3.1 Rakefile
georgi-shinmun-0.3.10 Rakefile
georgi-shinmun-0.3.2 Rakefile
georgi-shinmun-0.3.3 Rakefile
georgi-shinmun-0.3.4 Rakefile
georgi-shinmun-0.3.5 Rakefile
georgi-shinmun-0.3.6 Rakefile
georgi-shinmun-0.3.7 Rakefile
georgi-shinmun-0.3.8 Rakefile
georgi-shinmun-0.3.9 Rakefile
georgi-shinmun-0.3 Rakefile