Sha256: c8749462f68c49cf9ba9d9c87cf26e9d0298e1b070c1dc48f2109bd6a18e6d09

Contents?: true

Size: 511 Bytes

Versions: 1

Compression:

Stored size: 511 Bytes

Contents

module OpenstudioStandards
  def self.git_revision
    cmd = 'git'
    exts = ENV['PATHEXT'] ? ENV['PATHEXT'].split(';') : ['']
    ENV['PATH'].split(File::PATH_SEPARATOR).each do |path|
      exts.each do |ext|
        exe = "#{path}/#{cmd}#{ext}"
        if File.executable?(exe)
          revision = `"#{exe}" -C "#{__dir__}" rev-parse --short HEAD`
          return revision.strip!
        end
      end
    end
    return 'git-not-found-on-this-system'
  end
  VERSION = '0.2.15'.freeze
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
openstudio-standards-0.2.15 lib/openstudio-standards/version.rb