Sha256: 76dd304b304bbb3fa873c8907e07dbdbe3937c47ddd28a845c6616fee772872c

Contents?: true

Size: 499 Bytes

Versions: 1

Compression:

Stored size: 499 Bytes

Contents

# encoding: utf-8

###
# Note: Slideshow.version already used by core, that is, slideshow-models
#

module SlideshowCli

  MAJOR = 2
  MINOR = 4
  PATCH = 0
  VERSION = [MAJOR,MINOR,PATCH].join('.')

  def self.version
    VERSION
  end

  def self.root
    "#{File.expand_path( File.dirname(File.dirname(File.dirname(File.dirname(__FILE__)))) )}"
  end

  def self.banner
    "slideshow/#{VERSION} on Ruby #{RUBY_VERSION} (#{RUBY_RELEASE_DATE}) [#{RUBY_PLATFORM}]"
  end

end # module SlideshowCli

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
slideshow-2.4.0 lib/slideshow/cli/version.rb