Sha256: c5a069803ee2a71a05494e6adef4ae6ae647a6fea3a34bfdb78ddaefd017e536
Contents?: true
Size: 629 Bytes
Versions: 3
Compression:
Stored size: 629 Bytes
Contents
module RedCloth module VERSION MAJOR = 4 MINOR = 1 TINY = 0 RELEASE_CANDIDATE = nil STRING = [MAJOR, MINOR, TINY].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 = "#{NAME}-#{VERSION::FULL_VERSION} - Textile parser for Ruby.\n#{URL}" end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
RedCloth-4.1.0-x86-mswin32-60 | lib/redcloth/version.rb |
RedCloth-4.1.0 | lib/redcloth/version.rb |
RedCloth-4.1.0-universal-java | lib/redcloth/version.rb |