Sha256: 1f2579ca4ca4153ca27d6e03c0e46162354e56238767ee4dcfa1a245ac0fc36c

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 = 3
  MINOR = 1
  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-3.1.0 lib/slideshow/cli/version.rb