# File lib/configuration.rb, line 152
      def object_id(*args)
        unless args.empty?
          verbose = $VERBOSE
          begin
            $VERBOSE = nil
            define_method(:object_id){ args.first }
          ensure
            $VERBOSE = verbose
          end
        else
          return Pure[@__configuration].object_id
        end
      end