Sha256: 98db92093d2aa19275a6989f852b2885f18d92477ce94e07185c8c7fb10eeab0

Contents?: true

Size: 435 Bytes

Versions: 1

Compression:

Stored size: 435 Bytes

Contents

# encoding: UTF-8
# frozen_string_literal: true

require 'pathname'

module Locd
  # Absolute, expanded path to the gem's root directory.
  # 
  # @return [Pathname]
  # 
  ROOT = ( Pathname.new( __FILE__ ).dirname / '..' / '..' ).expand_path
  
  
  # String version read from `//VERSION`
  # 
  # @return [String]
  # 
  VERSION = (ROOT / 'VERSION').read
  
  
  # The gem name
  # 
  # @return [String]
  # 
  GEM_NAME = 'locd'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
locd-0.1.3 lib/locd/version.rb