Module: ImdbStringExtensions

Defined in:
lib/string_extensions.rb

Instance Method Summary collapse

Instance Method Details

#strip_tagsObject



10
11
12
# File 'lib/string_extensions.rb', line 10

def strip_tags
  gsub(/<\/?[^>]*>/, "")
end

#unescape_htmlObject



6
7
8
# File 'lib/string_extensions.rb', line 6

def unescape_html
  Iconv.conv("UTF-8", 'ISO-8859-1', CGI::unescapeHTML(self))
end