Sha256: f1a2d8acef41452425676baa247a95d83f096d19afc1fec0d2373107bf565960
Contents?: true
Size: 1.59 KB
Versions: 28
Compression:
Stored size: 1.59 KB
Contents
# -*- encoding: utf-8 -*- ################################################################################ # Time-stamp: <Mon 2016-11-07 22:06 svarrette> ################################################################################ # _____ _ _ _ _ _ # | ___|_ _| | | _____ _ __| | (_) |__ # | |_ / _` | | |/ / _ \| '__| | | | '_ \ # | _| (_| | | < (_) | | | |___| | |_) | # |_| \__,_|_|_|\_\___/|_| |_____|_|_.__/ # ################################################################################ # @author Sebastien Varrette <Sebastien.Varrette@uni.lu> # # * [Source code](https://github.com/Falkor/falkorlib) # * [Official Gem](https://rubygems.org/gems/falkorlib) ################################################################################ require 'awesome_print' # require 'active_support' # provides so many nice extensions require 'active_support/core_ext/hash' begin require 'term/ansicolor' COLOR = true rescue LoadError puts "/!\\ cannot find the 'term/ansicolor' library" puts " Consider installing it by 'gem install term-ansicolor'" COLOR = false end require 'yaml' # Sebastien Varrette aka Falkor's Common library to share Ruby code # and `{rake,cap}` tasks module FalkorLib # Return the root directory of the gem def self.root File.expand_path '../..', __FILE__ end def self.lib File.join root, 'lib' end def self.templates File.join root, 'templates' end end # module FalkorLib require 'falkorlib/version' require 'falkorlib/loader'
Version data entries
28 entries across 28 versions & 1 rubygems