lib/global.rb in runeblog-0.2.43 vs lib/global.rb in runeblog-0.2.44

- old
+ new

@@ -18,22 +18,23 @@ end # Refactor, move stuff elsewhere? def make_exception(sym, str) - log!(enter: __method__, args: [sym, str]) + log!(enter: __method__, args: [sym, str], level: 3) return if Object.constants.include?(sym) Object.const_set(sym, StandardError.dup) define_method(sym) do |*args| msg = str args.each.with_index {|arg, i| msg.sub!("$#{i+1}", arg) } Object.class_eval(sym.to_s).new(msg) end end - def system!(str) - log!(enter: __method__, args: [str]) + def system!(str, show: false) + log!(enter: __method__, args: [str], level: 2) + STDERR.puts str if show rc = system(str) if rc return rc else STDERR.puts "FAILED: #{str.inspect}" @@ -42,16 +43,16 @@ end rc end def prefix(num) - log!(enter: __method__, args: [num]) + log!(enter: __method__, args: [num], level: 3) "#{'%04d' % num.to_i}" end def check_meta(meta, where = "") - log!(enter: __method__, args: [meta, where]) + log!(enter: __method__, args: [meta, where], level: 3) str = "--- #{where}\n" str << "\ncheck_meta: \n" + caller.join("\n") + "\n meta = #{meta.inspect}\n" str << " title missing!\n" unless meta.title str << " title missing! (empty)" if meta.title && meta.title.empty? str << " num missing!\n" unless meta.num @@ -60,17 +61,17 @@ raise str end end def verify(hash) - log!(enter: __method__, args: [hash]) + log!(enter: __method__, args: [hash], level: 3) hash.each_pair do |expr, msg| puts "<< #{msg}" unless expr end end def assure(hash) # really the same as verify for now... - log!(enter: __method__, args: [hash]) + log!(enter: __method__, args: [hash], level: 3) hash.each_pair do |expr, msg| puts "<< #{msg}" unless expr end end