k_template 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
data/lib/ktemplate.rb ADDED
@@ -0,0 +1,17 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'k_template/version'
4
+
5
+ module KTemplate
6
+ # raise KTemplate::Error, 'Sample message'
7
+ Error = Class.new(StandardError)
8
+
9
+ # Your code goes here...
10
+ end
11
+
12
+ if ENV.fetch('KLUE_DEBUG', 'false').downcase == 'true'
13
+ namespace = 'KTemplate::Version'
14
+ file_path = $LOADED_FEATURES.find { |f| f.include?('k_template/version') }
15
+ version = KTemplate::VERSION.ljust(9)
16
+ puts "#{namespace.ljust(35)} : #{version.ljust(9)} : #{file_path}"
17
+ end