lib/gecoder/bindings.rb in gecoder-0.7.0 vs lib/gecoder/bindings.rb in gecoder-0.7.1

- old
+ new

@@ -3,10 +3,10 @@ # The Gecode::Raw module is what the interface should use to access methods # in Gecode. The actual bindings are located in ::GecodeRaw. # Describes a layer that delegates to GecodeRaw only after having logged the # call. - module LoggingLayer + module LoggingLayer #:nodoc: require 'logger' def self.method_missing(name, *args) logger.info{ "#{name}(#{args.join(', ')})" } ::GecodeRaw.send(name, *args)