Sha256: 7a8d57cb38ef38580aa668cd27b0eb74a2094f196b077dd6babb948e104cd083

Contents?: true

Size: 576 Bytes

Versions: 1

Compression:

Stored size: 576 Bytes

Contents

# encoding: utf-8


module SportDb
  module Module
module Formats

  MAJOR = 1    ## todo: namespace inside version or something - why? why not??
  MINOR = 1
  PATCH = 1
  VERSION = [MAJOR,MINOR,PATCH].join('.')

  def self.version
    VERSION
  end

  def self.banner
    "sportdb-formats/#{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 Formats
end # module Module
end # module SportDb

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
sportdb-formats-1.1.1 lib/sportdb/formats/version.rb