Sha256: 9c0589250b741874699150cefc7fd9a78969d2580503b6130e779e2543f32957
Contents?: true
Size: 840 Bytes
Versions: 1
Compression:
Stored size: 840 Bytes
Contents
module RedCloth module VERSION MAJOR = 4 MINOR = 2 TINY = 10 RELEASE_CANDIDATE = nil STRING = [MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('.') TAG = "REL_#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].compact.join('_')}".upcase.gsub(/\.|-/, '_') FULL_VERSION = "#{[MAJOR, MINOR, TINY, RELEASE_CANDIDATE].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 |
---|---|
assplecake-RedCloth-4.2.10 | lib/redcloth/version.rb |