Giter VIP home page Giter VIP logo

Comments (7)

oren avatar oren commented on May 16, 2024

Even after changing line 250 I get this error:

/opt/ruby-1.9.1-p243/lib/ruby/gems/1.9.1/gems/shared-mime-info-0.1/lib/shared-mime-info.rb:345:in `block (2 levels) in load_magic': invalid byte sequence in UTF-8 (ArgumentError)

Any clues?

from ruby-gmail.

thekindofme avatar thekindofme commented on May 16, 2024

Got this same error on 1.9 Ubuntu stock installation. Works fine with 1.8 though.

from ruby-gmail.

delta32 avatar delta32 commented on May 16, 2024

i got, too

from ruby-gmail.

dcparker avatar dcparker commented on May 16, 2024

Try adding the following near the top of shared-mime-info.rb:

require 'unicode'
class String
  def to_ascii_unicode
    Unicode.normalize_KD(self).unpack('U*').select{ |cp| cp < 127 }.pack('U*')
  end
end

and add ".to_ascii_unicode" to the end of what will now be #359, "buf << line"

Someone please verify whether that works or not?
I got that from http://www.jroller.com/obie/entry/fix_that_tranny_add_to, in case it doesn't work and you want to try some of the other methods there or learn more about the problem itself.

from ruby-gmail.

xxx avatar xxx commented on May 16, 2024

Another solution is to force the encoding in the File.open call on line 335:

open(file) { |f|

becomes

open(file, 'r:ASCII-8BIT') { |f|

from ruby-gmail.

marcbowes avatar marcbowes commented on May 16, 2024

Still broken? :-(

from ruby-gmail.

myobie avatar myobie commented on May 16, 2024

I'm pretty sure this is fixed in master and 0.3.0. Let me know if it's not.

from ruby-gmail.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.