Sha256: 6f9dc6a8d5cdfdcc665833b7920c55809a18a9b61d00fe5ab76d85a6d0dcc2a9
Contents?: true
Size: 658 Bytes
Versions: 1
Compression:
Stored size: 658 Bytes
Contents
module RedCloth module VERSION MAJOR = 0 MINOR = 8 TINY = 6 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 = "BBRedCloth" GEM_NAME = NAME URL = "http://redcloth.org/" DESCRIPTION = "#{NAME}-#{VERSION::FULL_VERSION} - Textile parser for Ruby. Includes BBCode additions.\n#{URL}" end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
BBRedCloth-0.8.6 | lib/redcloth/version.rb |