Sha256: 166acb69de00d96dcf3d0e97cf7edf8e136d2fb1625123d28e7825fc65e7c0ef

Contents?: true

Size: 701 Bytes

Versions: 1

Compression:

Stored size: 701 Bytes

Contents

# -*- mode: ruby; ruby-indent-level: 4; tab-width: 4 -*-

# :title: Sixfish RDoc
#
# Toplevel namespace for Sixfish. The main goods are in RDoc::Generator::Sixfish.
module Sixfish

	# Library version constant
	VERSION = '0.3.0'

	# Fivefish project URL
	PROJECT_URL = 'https://hg.sr.ht/~ged/Sixfish'


	### Get the library version. If +include_buildnum+ is true, the version string will
	### include the VCS rev ID.
	def self::version_string( include_buildnum=false )
		vstring = "Sixfish RDoc %s" % [ VERSION ]
		return vstring
	end


	autoload :Patches, 'sixfish/patches'

end # module Sixfish

require 'rdoc/rdoc'
require 'rdoc/generator/sixfish'

RDoc::Markup::ToHtml.prepend( Sixfish::Patches )

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rdoc-generator-sixfish-0.3.0 lib/sixfish.rb