Sha256: 719a61eb183a4f108f7c6cfa885dd0a7193e808cdcf58418077eba89f7ae74bd

Contents?: true

Size: 960 Bytes

Versions: 2

Compression:

Stored size: 960 Bytes

Contents

# -*- ruby -*-

require 'rubygems'
require 'hoe'

$:.unshift 'lib'

Hoe.plugin :git

Hoe.spec 'rdoc_chm' do |rdoc_chm|
  rdoc_chm.rubyforge_name = 'rdoc'

  rdoc_chm.developer 'Gordon Thiesfeld', 'gthiesfeld@gmail.com'
  rdoc_chm.developer 'Eric Hodel', 'drbrain@segment7.net'
  rdoc_chm.developer 'Dave Thomas', ''
  rdoc_chm.developer 'Tony Strauss', 'tony.strauss@designingpatterns.com'

  rdoc_chm.readme_file = 'README.rdoc'

  rdoc_chm.extra_deps << ['rdoc', '~> 3.12']

  rdoc_chm.testlib = :minitest

  rdoc_chm.spec_extras['required_rubygems_version'] = '>= 1.3'
  rdoc_chm.spec_extras['homepage'] = 'https://github.com/vertiginous/rdoc_chm'
end

desc "Build chm files"
task :chm => :clean do
  sh %q{ rdoc --fmt chm --op rdoc_chm --title="rdoc_chm 2.4.0" --main=README.rdoc . }
end

task :clobber_chm do
  rm_rf "rdoc_chm"
end

desc "rebuild chm files"
task :rechm => [:clobber_chm, :chm] 

# vim: syntax=Ruby

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
rdoc_chm-3.1.0 Rakefile
rdoc_chm-3.0.0 Rakefile