Sha256: 6cc7d9c6a8994574319ee1a943f912e53306dc94b1451a71de7ba9fa8791fd36

Contents?: true

Size: 421 Bytes

Versions: 1

Compression:

Stored size: 421 Bytes

Contents

# require all files here
require 'rubygems'
require 'oct/app'
require 'oct/oct'

# Master namespace
module Oct

  # Contents of the VERSION file
  #
  # Example format: 0.0.1
  #
  # @return [String] the contents of the version file in #.#.# format
  def self.version
    version_info_file = File.join(File.dirname(__FILE__), *%w[.. VERSION])
    File.open(version_info_file, "r") do |f|
      f.read
    end
  end
 
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
oct-0.1.0 lib/oct.rb