# encoding: utf-8 module SlideshowTemplates MAJOR = 2 MINOR = 4 PATCH = 0 VERSION = [MAJOR,MINOR,PATCH].join('.') def self.version VERSION end def self.banner "slideshow-templates/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]" end def self.root "#{File.expand_path( File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) )}" end end # module SlideshowTemplates