Sha256: 67c9f4e159ad553abcaead8ff8602065056082e0b3e0dcc7bd3d2c40d3629bac

Contents?: true

Size: 772 Bytes

Versions: 1

Compression:

Stored size: 772 Bytes

Contents

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

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

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

	# Library version constant
	VERSION = '0.4.0'

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

	# Fivefish project URL
	PROJECT_URL = 'https://bitbucket.com/ged/fivefish'


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

end # module Sixfish

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
rdoc-generator-sixfish-0.5.0.pre20190220103520 lib/sixfish.rb