Sha256: 658406bfe5734865e76840c2cc02fbbb53e25e42768093904255ecc1662e8598
Contents?: true
Size: 421 Bytes
Versions: 4
Compression:
Stored size: 421 Bytes
Contents
# -*- coding: utf-8 -*- module Rays module Extension module_function def name() super.split('::')[-2] end def version() File.read(root_dir 'VERSION')[/[\d\.]+/] end def root_dir(path = '') File.expand_path "../../#{path}", __dir__ end def inc_dir() root_dir 'include' end def lib_dir() root_dir 'lib' end end# Extension end# Rays
Version data entries
4 entries across 4 versions & 1 rubygems
Version | Path |
---|---|
rays-0.1.34 | lib/rays/extension.rb |
rays-0.1.33 | lib/rays/extension.rb |
rays-0.1.32 | lib/rays/extension.rb |
rays-0.1.31 | lib/rays/extension.rb |