Sha256: 5599a3b98028f4938d7cdef78ba41f41fc579dda315e9849fed0f6c89bd75188

Contents?: true

Size: 793 Bytes

Versions: 1

Compression:

Stored size: 793 Bytes

Contents

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

require 'rdoc/rdoc'
require 'rdoc/generator/fivefish'

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

	# Library version constant
	VERSION = '0.2.0'

	# Version-control revision constant
	REVISION = %q$Revision: c8020f3a3530 $

	# Fivefish project URL
	PROJECT_URL = 'http://deveiate.org/fivefish.html'


	### 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 = "Fivefish RDoc %s" % [ VERSION ]
		vstring << " (build %s)" % [ REVISION[/: ([[:xdigit:]]+)/, 1] || '0' ] if include_buildnum
		return vstring
	end

end # module Fivefish

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rdoc-generator-fivefish-0.2.0 lib/fivefish.rb