lib/prc.rb in lorj-0.1.0 vs lib/prc.rb in lorj-0.2.0

- old
+ new

@@ -103,6 +103,29 @@ def level @level end + def lib_path=(v) + @lib_path = v if @lib_path.nil? + end + + def lib_path() + @lib_path + end + + def controller_path() + File.expand_path(File.join(@lib_path, "providers")) + end + + def process_path() + File.join(@lib_path, "core_process") + end +end + + +class Object + # Simplify boolean test on objects + def boolean? + self.is_a?(TrueClass) || self.is_a?(FalseClass) + end end