I want to store all my url in readble utf8

class User < ActiveRecord::Base
  require 'addressable/uri'
  require 'idn'
  include IDN
  def service_url=(url)
    url = Addressable::URI.parse Addressable::URI.unescape(url)
    url.host = Idna.toUnicode url.host
    super url.to_s
  end
end

any hints for refactoring or for more universal gems?

link|improve this question
I'm going to ask why you want to store them as UTF-8. Yes, they will give you a visible representation of the multibyte characters, but, you can run into problems with backend databases not liking the characters being injected into the table. It's something to consider. +1 for using Addressable::URI for this. – the Tin Man Apr 25 '11 at 23:34
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.