class WebMock::Util::HashCounter

def put(key, num=1)

def put(key, num=1)
  @lock.synchronize do
    hash[key] += num
    @order[key] = @max += 1
  end
end