Sha256: 1b3d7d362e5555824c184b7cc3ce187582ab7cef23dac8043a3ae7bac17c1a98
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 = 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 Module end # module SportDb
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sportdb-formats-1.1.0 | lib/sportdb/formats/version.rb |