RADIANT_ROOT = File.expand_path(File.join(File.dirname(__FILE__), "..")) unless defined? RADIANT_ROOT unless defined? Radiant::Version module Radiant module Version Major = '0' Minor = '9' Tiny = '1' Patch = nil # set to nil for normal release class << self def to_s [Major, Minor, Tiny, Patch].delete_if{|v| v.nil? }.join('.') end alias :to_str :to_s end end end end