Sha256: 16b2ed6ed1c56fc7c2bc6fdc65df5520316c4e8d7b39b17a9ea5fa7523e20f19
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 = 0 PATCH = 4 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.0.4 | lib/sportdb/formats/version.rb |