|
|
| When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-25 22:36:30 |
|
Hi all,
It seems that the keyboard events support which is one of the important requirements for my project is not available on eventmachine 0.8.1 release. So I need upgrade it to the latest 0.9.0 release.
I'm wondering when the eventmachine 0.9.0 BINARY release for mswin32 will be ready.
Best Regards, Lorin Liu
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-25 23:23:49 |
|
On 9/25/07, Liu Leapmars < leapmars.liu gmail.com">leapmars.liu gmail.com> wrote:
Hi all,
It seems that the keyboard events support which is one of the important requirements for my project is not available on eventmachine 0.8.1 release. So I need upgrade it to the latest 0.9.0 release.
I'm wondering when the eventmachine 0.9.0 BINARY release for mswin32 will be ready.
Best Regards, Lorin Liu
Ah sorry, will get it out asap.
I39;ve been rather unsure exactly how many people use the Windows gem, as it generates so few support requests! I'm glad to know you're using it.
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 00:04:36 |
|
That's great! Thanks a lot!
Regards,
Lorin
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 00:28:48 |
|
Here's a release candidate. Please test it and let me know if it works well in your environment. If so, I'll release it.
|
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 02:14:15 |
|
Hi Francis,
An error occurs when running the following sample code:
>>01 require 'eventmachine';
>>02 module KbHandler >>03 include EM::Protocols::LineText2 >>04 def receive_line d >>05 EM::stop if d == "STOP"
>>06 end >>07 end
>>08 EM.run { >>09 EM.open_keyboard KbHandler >>10 EM::Timer.new(1) { EM.stop } >>11 }
The error message is "This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."
If I comments line 9, everything goes well. Seems that there is something wrong with EM.open_keyboard method.
My ruby version: ruby 1.8.5 (2006-08-25) [i386-mswin32]
My OS: Windows XP SP2
Regards,
Lorin
2007/9/26, Francis Cianfrocca < garbagecat10 gmail.com">garbagecat10 gmail.com>:
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 02:19:55 |
|
On 9/26/07, Liu Leapmars < leapmars.liu gmail.com">leapmars.liu gmail.com> wrote:
Hi Francis,
An error occurs when running the following sample code:
>>01 require 'eventmachine';
>>02 module KbHandler >>03 include EM::Protocols::LineText2 >>04 def receive_line d >>05 EM::stop if d == "STOP"
>>06 end >>07 end
>>08 EM.run { >>09 EM.open_keyboard KbHandler >>10 EM::Timer.new(1) { EM.stop } >>11 }
The error message is "This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information."
If I comments line 9, everything goes well. Seems that there is something wrong with EM.open_keyboard method.
My ruby version: ruby 1.8.5 (2006-08-25) [i386-mswin32]
My OS: Windows XP SP2
Regards,
Lorin
Got the same error, thx for the code sample. Will send you another RC when fixed.
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 02:41:37 |
|
On 9/26/07, Liu Leapmars < leapmars.liu gmail.com">leapmars.liu gmail.com> wrote:
Try it now.
|
|
| Re: When the eventmachine 0.9.0 BINARY
release for mswin32 will be ready? |

|
2007-09-26 04:55:16 |
|
It looks OK.
|