lib/backports/1.9.1/symbol/length.rb



unless Symbol.method_defined? :length
  class Symbol
    def length
      to_s.length
    end
  end
end