Sha256: 1057828a7b1568906729c98659f5b2f0bbd35a3b2d023d3f93399792f8eeb463
Contents?: true
Size: 792 Bytes
Versions: 21
Compression:
Stored size: 792 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.0.1' # Version-control revision constant REVISION = %q$Revision: 083bb9b1a6de $ # 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
21 entries across 21 versions & 1 rubygems