Sha256: 49ee4a449010b7549ac6350d62fc5aecde9091c13e8f5d83780331f37f29ec3d
Contents?: true
Size: 538 Bytes
Versions: 1
Compression:
Stored size: 538 Bytes
Contents
# encoding: utf-8 module SportDb module Formats MAJOR = 0 ## todo: namespace inside version or something - why? why not?? MINOR = 4 PATCH = 0 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 SportDb
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sportdb-formats-0.4.0 | lib/sportdb/formats/version.rb |