Sha256: c7bf547e12406b748be73f4616f0350fd66e45221edeefcf8a480ba117d62a6b
Contents?: true
Size: 793 Bytes
Versions: 1
Compression:
Stored size: 793 Bytes
Contents
module RedCloth module VERSION MAJOR = 4 MINOR = 3 TINY = 0 # RELEASE_CANDIDATE = 0 STRING = [MAJOR, MINOR, TINY].compact.join('.') TAG = "REL_#{[MAJOR, MINOR, TINY].compact.join('_')}".upcase.gsub(/\.|-/, '_') FULL_VERSION = "#{[MAJOR, MINOR, TINY].compact.join('.')}" class << self def to_s STRING end def ==(arg) STRING == arg end end end NAME = "RedCloth" GEM_NAME = NAME URL = "http://redcloth.org/" description = "Textile parser for Ruby." if RedCloth.const_defined?(:EXTENSION_LANGUAGE) SUMMARY = "#{NAME}-#{VERSION::FULL_VERSION}-#{EXTENSION_LANGUAGE}" else SUMMARY = "#{NAME}-#{VERSION::FULL_VERSION}" end DESCRIPTION = SUMMARY + " - #{description}\n#{URL}" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
RedCloth-4.3.0 | lib/redcloth/version.rb |