Re: [Ironruby-core] [ANN]IronRuby 1.0 RC4

2010-03-23 Thread Jim Deville
Git updated From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, March 23, 2010 6:33 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] [ANN]IronRuby 1.0 RC4 FYI: Git repo will be updated later tonight. Just f

Re: [Ironruby-core] [ANN]IronRuby 1.0 RC4

2010-03-23 Thread Jim Deville
FYI: Git repo will be updated later tonight. Just finishing up the sync. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, March 23, 2010 6:13 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] [ANN]IronRuby 1.0

[Ironruby-core] [ANN]IronRuby 1.0 RC4

2010-03-23 Thread Jim Deville
The IronRuby team is pleased to announce version 1.0 RC4! http://ironruby.net/download Direct download link: http://ironruby.codeplex.com/releases/view/41854#DownloadId=112345 As IronRuby approaches the final 1.0, these RCs will contain crucial bug fixes and enhancements that IronRuby requires

Re: [Ironruby-core] Missing method in NKF module

2010-03-23 Thread Shay Friedman
Maybe the .NET's System.Text.Encoding class: >>> bytes = Encoding.convert(Encoding.ASCII, Encoding.UTF8, Encoding.ASCII.get_bytes("Hello".to_clr_string)) => [72 (Byte), 101 (Byte), 108 (Byte), 108 (Byte), 111 (Byte)] >>> Encoding.UTF8.get_string(bytes) => 'Hello' Shay. ---

[Ironruby-core] Missing method in NKF module

2010-03-23 Thread Mark Rendle
I'm trying to use the waz-storage gem for talking to Windows Azure storage services, but it uses kconv and there's a problem with the toutf8 mix-in method, which is trying to call NKF.nkf, which is not defined. Repro: irb(main):001:0> require 'kconv' => true irb(main):002:0> "foo".toutf8 NoMethod

Re: [Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Ivan Porto Carrero
for assemblies you need to add an appmanifest I think --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Web: http://whiterabbitconsulting.eu - http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action (http://manning.com/carrero) Microsoft I

Re: [Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Shay Friedman
OK I zipped the libs folder and added it to the page as . When I try to require the assemblies, the files are not found. I tried to make the case simpler and zipped a simple rb file to a zip and included it in the page as well: I tried: require "TestClass.rb" require "TestClass" require 'test.zip

Re: [Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Ivan Porto Carrero
I thought that already happened (dlr-slvx requirement etc) --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Web: http://whiterabbitconsulting.eu - http://flanders.co.nz Twitter: http://twitter.com/casualjim Author of IronRuby in Action (http://manning.com/carrero) Micros

Re: [Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Shay Friedman
That's a good idea but it enforces the user to use Gestalt. Which brings up another question - are we willing to "standardize" Gestalt by making it the best practice for using DLR languages in Silverlight? Shay Friedman | Author of IronRuby

Re: [Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Ivan Porto Carrero
I'd the contents of the lib folder in a zip file and then use gestalt to download the zip. from then on they are available --- Met vriendelijke groeten - Best regards - Salutations Ivan Porto Carrero Web: http://whiterabbitconsulting.eu - http://flanders.co.nz Twitter: http://twitter.com/casualjim

[Ironruby-core] Using Ruby's standard libraries in Silverlight

2010-03-23 Thread Shay Friedman
Hey guys, What is the recommendation for using Ruby's standard libraries in Silverlight applications? Should the lib be copied to the project dir? should a reference be added to the manifest? some other technique? Thanks, Shay. Shay Friedma