Re: [Ironruby-core] Consuming DynamicObjects in IronRuby

2010-03-30 Thread Jimmy Schementi
Also, a small repro would be useful ... I'm not sure how to recreate the assembly finding issues using. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, March 02, 2010 2:05 PM To: ironruby-core@rubyforge.org Subject: R

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Tomas Matousek
Nope, this looks more like a bug in Mono (or the rake build). Tomas From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Ryan Riley Sent: Tuesday, March 30, 2010 9:07 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Saving to YAML not

Re: [Ironruby-core] IronRuby.Rack how to debug?

2010-03-30 Thread Jimmy Schementi
Ivan, When using IronRuby.Rack and debugging the ruby code running, keep a few things in mind: 1. Enable debug mode for DLR code in your app’s web.config (in the Microsoft.Scripting section). 2. Because VS breakpoints in blocks don’t work yet, using Debug.Assert will do the job.

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Ryan Riley
Not sure if this is related, but I just tried building on Mono 2.6.3 on the Mac and am getting a build error here: --- yaml --- BuiltinsOps.cs(135,

Re: [Ironruby-core] Anyone interested in implementing Etc module for Mono?

2010-03-30 Thread Ryan Riley
Thanks for the update. I am working on it now and will keep you posted. Ryan Riley Email: ryan.ri...@panesofglass.org LinkedIn: http://www.linkedin.com/in/ryanriley Blog: http://wizardsofsmart.net/ Twitter: @panesofglass Website: http://panesofglass.org/ On Mon, Mar 29, 2010 at 1:39 PM, Shri Bo

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Charles Strahan
Tomas Matousek wrote: > Thanks! I've filed a bug > http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=4284. > > Tomas Hello Tomas! I'm having the exact same problem as Nick. Unfortunately, this error is a show stopper for me. I'm writing an application that needs to read a ton of YAML,

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Tomas Matousek
Thanks! I've filed a bug http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=4284. Tomas -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Nick Hird Sent: Tuesday, March 30, 2010 11:09 AM To: ironruby-core@ruby

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Nick Hird
My ruby isn't the best so i included the source i am working with. 1) start the script (no args) 2) type "buy 10 msft" 3) type "history" (view output) 4) type "exit" 5) view yaml file (should look good here) 6) start the script again (no args) 7) type "history" (different than before) 8) you'll se

Re: [Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Tomas Matousek
This looks like a bug. Could you sent us a simple self-contained repro? It would help us to identity the issue faster. Thanks, Tomas -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Nick Hird Sent: Tuesday, March 30,

[Ironruby-core] Saving to YAML not working as expected.

2010-03-30 Thread Nick Hird
I am following the Stock Portfolio post from RubyQuiz.com and it involves using YAML for its storage. Under ruby 1.8.7, the data is being saved and loaded with no problem. Under ironruby rc4, when it gets saved and then retrieved it changes the data to its object type. For example on the first sam