Module: Dynabix

Defined in:
lib/dynabix.rb,
lib/dynabix/metadata.rb

Overview

An ActiveRecord 3.x Ruby gem for attribute serialization.

Defined Under Namespace

Modules: Metadata

Constant Summary collapse

WINDOWS =
RbConfig::CONFIG['host_os'] =~ /mswin|mingw/i
CYGWIN =
RbConfig::CONFIG['host_os'] =~ /cygwin/i

Class Method Summary collapse

Class Method Details

.versionString

Contents of the VERSION file

Example format: 0.0.1

Returns:

  • (String)

    the contents of the version file in #.#.# format



13
14
15
16
17
18
# File 'lib/dynabix.rb', line 13

def self.version
  version_info_file = File.join(File.dirname(__FILE__), *%w[.. VERSION])
  File.open(version_info_file, "r") do |f|
    f.read.strip
  end
end