Sha256: aff47ce1eb3140077648ded4d6a370a896a390cf9209e95fa3f0d3fbc722d9b5

Contents?: true

Size: 683 Bytes

Versions: 1

Compression:

Stored size: 683 Bytes

Contents

require 'pathname'

class Thor
  # Absolute, expanded path to the gem's root directory.
  # 
  # @return [Pathname]
  # 
  ROOT = Pathname.new( __dir__ ).join( '..', '..' ).expand_path
  
  
  # Gem version string.
  # 
  # See {file:doc/files/notes/versioning.md} for details.
  # 
  # @return [String]
  # 
  VERSION = '0.1.3'
  
  
  # The version of Thor that Atli is up to date with.
  # 
  # Right now, it's the version of Thor that was forked, but if I'm able to
  # merge Thor updates in and end up doing so, I intend to update this to
  # reflect it.
  # 
  # See {file:doc/files/notes/versioning.md} for details.
  # 
  # @return [String]
  # 
  THOR_VERSION = '0.1.3'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
atli-0.1.3 lib/thor/version.rb