Encontre e substitua tags HTML

Tenho o seguinte HTML:

<html>
<body>
<h1>Foo</h1>
<p>The quick brown fox.</p>
<h1>Bar</h1>
<p>Jumps over the lazy dog.</p>
</body>
</html>

Gostaria de alterá-lo para o seguinte HTML:

<html>
<body>
<p class="title">Foo</p>
<p>The quick brown fox.</p>
<p class="title">Bar</p>
<p>Jumps over the lazy dog.</p>
</body>
</html>

Como posso encontrar e substituir determinadas tags HTML? Eu posso usar o Nokogiri gema

questionAnswers(3)

yourAnswerToTheQuestion