I have this file:
# file.txt
My first name is Foo
and my last name is Bar.
I live in Baz.
I want to add:
My number is Baz.
after:
My first name is Foo
and my last name is Bar.
So the result will be:
My first name is Foo
and my last name is Bar.
My number is Baz.
I live in Baz.
How could I do this in Ruby?