Sha256: 833f99bd6d5ea266e2fd681bde0f6733b639ec48c3cea1aff888e14b9d3869f9

Contents?: true

Size: 629 Bytes

Versions: 4

Compression:

Stored size: 629 Bytes

Contents

module RedCloth
  module VERSION
    MAJOR = 4
    MINOR = 1
    TINY  = 1
    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

4 entries across 4 versions & 2 rubygems

Version Path
jeremy-RedCloth-4.1.1 lib/redcloth/version.rb
RedCloth-4.1.1-universal-java lib/redcloth/version.rb
RedCloth-4.1.1-x86-mswin32-60 lib/redcloth/version.rb
RedCloth-4.1.1 lib/redcloth/version.rb