aquasync
aquasync
Hmm, I need to do something about that old windows version - it is based on a really old ruby code base (1.8.6) and embedding technology (exerb) which I believe...
Yeah a related (or the same?) problem has been mentioned here - https://github.com/aquasync/ruby-msg/pull/5. As mentioned there, I think the mime parts should be treated as binary data (ie encoded with...
I haven't seen that unknown encoding before - perhaps something has changed in newer outlooks. Googling it that seems to be used for GUIDs, probably an easy fix but for...
I believe you can use `StringIO` to pass a buffer to `Msg.open`. The two separate parts is standard for how multipart/alternative works - it is likely the message in both...
This project was originally written for ruby 1.8 and I've never really spent the time to properly address some of these issues. I don't think forcing the encoding to UTF8...
Hey @denodster, sorry haven't really had time to look at this of late. While your fix sort of works, I've discussed briefly on another issue [here](https://github.com/aquasync/ruby-msg/issues/9#issuecomment-54589744), what I think is...
Another option would be to revert d4a41c1ffacc0c555fc372460fc27baf2b6696d4, then it won't have any dependency on openssl for the authentication handshake.
It isn't an issue for me either way, but just wanted to clarify that the old Cipher::DES class was pure ruby - the .c file in contrib was merely the...
Seems fine to me, though the read/write naming seems slightly counter-intuitive as nothing is read/written. Seems all of the callers here and in your later commits are of the form...
After taking a bit of a closer look, it seems that I'm getting much smaller serialization with dpack for my test cases. Eg: ``` > d = new Date(); console.log(pack(obj).length);...