Sha256: b5724d3c5bbdc59e4c39482e538b6ec969d44d8012900050e4dabdaebb5ca477

Contents?: true

Size: 649 Bytes

Versions: 3

Compression:

Stored size: 649 Bytes

Contents

# require all files here
require 'rbconfig'
require 'mutagem/lockfile'
require 'mutagem/mutex'
require 'mutagem/task'

# Master namespace
module Mutagem

  # 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.strip
    end
  end

  # Platform constants
  unless defined?(Mutagem::WINDOWS)
    WINDOWS = RbConfig::CONFIG['host_os'] =~ /mswin|mingw/i
    CYGWIN = RbConfig::CONFIG['host_os'] =~ /cygwin/i
  end

end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
mutagem-0.2.4 lib/mutagem.rb
mutagem-0.2.3 lib/mutagem.rb
mutagem-0.2.2 lib/mutagem.rb