Commit 2fbe974

mokha <mokha@cisco.com>
2018-03-01 18:42:25
convert template path to string to support older versions of tilt. tag: v0.1.11
1 parent 84aede0
Changed files (2)
lib/xml/kit/template.rb
@@ -28,7 +28,7 @@ module Xml
       end
 
       def template
-        @template ||= Tilt.new(template_path)
+        @template ||= Tilt.new(template_path.to_s)
       end
     end
   end
lib/xml/kit/version.rb
@@ -1,5 +1,5 @@
 module Xml
   module Kit
-    VERSION = "0.1.10"
+    VERSION = "0.1.11"
   end
 end