Sha256: 8471ad53a3521cc1e37da71f30a12feec7aa6c9d9b19361225b3e81200ceff9c
Contents?: true
Size: 787 Bytes
Versions: 1
Compression:
Stored size: 787 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: bd4700e71546 $ # 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.pre20180710102525 | lib/sixfish.rb |