Sha256: 53c47004be9d377cbd18f5bd576d5546c134dfddd7033366b197bcd514310131
Contents?: true
Size: 634 Bytes
Versions: 1
Compression:
Stored size: 634 Bytes
Contents
# encoding: utf-8 module SportDb module Module module Catalogs 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 ## todo/fix: rename to sportdb-catalogs - why? why not? def self.banner "sportdb-config/#{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 Catalogs end # module Module end # module SportDb
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sportdb-config-1.0.4 | lib/sportdb/config/version.rb |