Module: ImdbStringExtensions
- Defined in:
- lib/string_extensions.rb
Instance Method Summary collapse
Instance Method Details
#strip_tags ⇒ Object
10 11 12 |
# File 'lib/string_extensions.rb', line 10 def gsub(/<\/?[^>]*>/, "") end |
#unescape_html ⇒ Object
6 7 8 |
# File 'lib/string_extensions.rb', line 6 def unescape_html Iconv.conv("UTF-8", 'ISO-8859-1', CGI::unescapeHTML(self)) end |