Extract copy from HTML?

Is there a Ruby method to strip (not sanitize) HTML? For example:

my_string = ‘

This copy is very important.


my_string.remove_html =>
‘This copy is very important’

Thanks!
Tom