Re: [Ironruby-core] Regular Expressions

2008-03-25 Thread Jimmy Schementi
I was able to get a JSON parser working in IronRuby, and that heavily relies on Regex support. http://jimmy.schementi.com/blog/2008/03/parsing-json-in-ironruby.html. On 3/25/08 5:56 PM, Aaron Clauson [EMAIL PROTECTED] wrote: Hi, Sorry if this is already discussed somewhere but after a trawl

[Ironruby-core] Using Dynamic Languages in Silverlight with Visual Studio

2008-03-30 Thread Jimmy Schementi
http://blogs.msdn.com/webnext/archive/2008/03/30/silverlight-dynamic-languag es-in-visual-studio.aspx For all those who have been asking about Visual Studio support, Laurence Moroney just posted about using Dynamic Languages in Silverlight with Visual Studio! Shows you how to start Chiron with F5

Re: [Ironruby-core] Cannot debug IronRuby + Silverlight - any hint ?

2008-04-09 Thread Jimmy Schementi
the simplest way to do this for me was to copy the Dynamic SDK dlls from /bin to my application /app (it seems that Chiron will pick them instead if they are here). Sure. =) You can also put them in the /bin directory that Chiron points to so all your apps can use them. ~js -Original

Re: [Ironruby-core] Opening up our tree to external committers

2008-05-01 Thread Jimmy Schementi
Splitting into different DLLs complicate things for Silverlight. On the desktop you can have the assembly loading be dynamic with a foo.rb wrapper for a library. However, Silverlight (today) requires the DLL would have to be downloaded to the client first before loading. In other words, the

Re: [Ironruby-core] More spec review

2008-07-11 Thread Jimmy Schementi
Peter, Yes, git is awesome. We're new to it as well, so we're all learning about to use it most effectively. One awesome github feature is that you can comment on specific commits from the website. Putting any conversation about commits right on that page is an awesome way to archive those

Re: [Ironruby-core] Code Review: Spec changes

2008-07-15 Thread Jimmy Schementi
Can you send links to github instead of just the commit sha1? From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Jim Deville [EMAIL PROTECTED] Sent: Tuesday, July 15, 2008 2:31 PM To: ironruby-core@rubyforge.org; IronRuby External Code Reviewers; Srivatsn

Re: [Ironruby-core] Announcing IronEditor - An Editor for IronRuby, IronPython and other DLR languages

2008-07-21 Thread Jimmy Schementi
Yep, that's true. Moonlight today only has basic support for sl2 stuff. However, if based on silverlight apis then eventually moonlight will run it. And, a moonlight app can be run just like any desktop app on Linux. On Jul 21, 2008, at 3:57 AM, Ivan Porto Carrero [EMAIL

Re: [Ironruby-core] ScriptableMember and Silverlight

2008-08-14 Thread Jimmy Schementi
Hey Sean, Yeah, I’m well aware of the issue with not being able to use [ScriptableMember] for IronRuby. =( 1. Access Javascript variable from Ruby: If in your HTML you have some variable: script type=”text/javascript” var jsVar = “Hello from Javascript” /script Then in your Ruby script you

Re: [Ironruby-core] Silverlight and Custom Components

2008-08-14 Thread Jimmy Schementi
Dividing things up into UserControls is the Silverlight model for separating UI components. You should be able to use those components from XAML by name, like MyCustomUserControl /, as well as load them in Ruby using load_component. I suspect the first one doesn’t work, since it’ll require a

Re: [Ironruby-core] Stupid to_clr_string

2008-08-15 Thread Jimmy Schementi
You can monkey-patch the Silverlight classes you're using to do the to_clr_string for you. For example HtmlDocument#GetElementById requires you pass it a ClrString, which can be annoying from IronRuby. So, you can make it take a Ruby string or symbol like this: module System::Windows::Browser

[Ironruby-core] Silverlight Dynamic Languages SDK 0.3.0

2008-08-30 Thread Jimmy Schementi
Just wanted to let everyone know that I pushed out a new version of the Silverlight Dynamic Languages SDK. http://www.codeplex.com/sdlsdk/Release/ProjectReleases.aspx?ReleaseId=16845 Details here: http://blog.jimmy.schementi.com/2008/08/silverlight-dynamic-languages-sdk-03.html Enjoy the rest

Re: [Ironruby-core] Experiences building IronRuby from source

2008-09-10 Thread Jimmy Schementi
You don't need the Silverlight SDK installed ... just the Silverlight Runtime. If you look at the value of $SilverlightSdkPath, it should point to C:\Program Files\Microsoft Silverlight\2.0.30523.8 ... if so, then you build will succeed for Silverlight. If not, then you should make it point to

Re: [Ironruby-core] Code Review: rubyspec4

2008-09-29 Thread Jimmy Schementi
Dude, you're such a git newbee =) It changes the files in your .git folder, and those can be pushed back up. -Original Message- From: [EMAIL PROTECTED] [mailto:ironruby-core- [EMAIL PROTECTED] On Behalf Of Jim Deville Sent: Monday, September 29, 2008 2:23 PM To:

[Ironruby-core] Dynamic Languages in Silverlight 2 RC0

2008-10-01 Thread Jimmy Schementi
All, Visit http://codeplex.com/sdlsdk to download IronPython and IronRuby binaries for Silverlight 2 RC0! Here's the direct release page (http://www.codeplex.com/sdlsdk/Release/ProjectReleases.aspx?ReleaseId=17839) and you can read more about it on my blog

[Ironruby-core] ironruby.net back up soon

2008-10-09 Thread Jimmy Schementi
All, ironruby.net should be back up whenever the new A-records propagate. Thanks. ~Jimmy ___ Ironruby-core mailing list Ironruby-core@rubyforge.org http://rubyforge.org/mailman/listinfo/ironruby-core

[Ironruby-core] AgDLR: Silverlight + DLR + Open Source

2008-11-18 Thread Jimmy Schementi
IronRubites and IronPythonics, First and foremost, I want to thank anyone who has used the bits on http://codeplex.com/sdlsdk, and accepting my bullshit version of open-source. While getting monthly binaries/sources is nice, it should be about working on the project together ... not just me

Re: [Ironruby-core] AgDLR: Silverlight + DLR + Open Source

2008-11-18 Thread Jimmy Schementi
mercurial though - doesn't get much of a look in these days. I guess the 'Ag' refers to silver - out of interest, what is the origin of 'chiron'? On Wed, Nov 19, 2008 at 10:58 AM, Jimmy Schementi [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] wrote: IronRubites and IronPythonics, First and foremost, I

Re: [Ironruby-core] Silverlight (sdlsdk) on mac

2008-12-05 Thread Jimmy Schementi
Seo Sanghyeon wrote: 2008/12/6 Ivan Porto Carrero [EMAIL PROTECTED]: Hi When I want to look at some samples on the mac side of my laptop from the sdlsdk I get an error from mono [snip] 17:10:27 500 673 /samples/ruby/clock/app.xap [error generating XAP: libMonoPosixHelper.dylib]

Re: [Ironruby-core] Code Review: gitintegration

2008-12-05 Thread Jimmy Schementi
Looks good. To give everyone else context, this automates pushing source code from IronRuby's TFS repository to git://github.com/ironruby/ironruby.git. It's only meant to be run by Jim, which is why there's hard-coded paths and such. Soon Jim will send out a review for automation to pull

Re: [Ironruby-core] Trouble building from Visual Studio (git repo)

2008-12-08 Thread Jimmy Schementi
Terence, Sorry for the issues you're having, crazy build breaks and signing are never fun. Microsoft requires us to sign any binaries we produce, so providing access to our repository is a pain because we can't distribute the private key used in signing. Jim is going to fix this so builds by

Re: [Ironruby-core] Generic method synxtax

2009-01-09 Thread Jimmy Schementi
and extension method classes here.) Passing the generic types as the first parameters seems the most explicit and understandable translation to me. ~ Ryan On Fri, Jan 9, 2009 at 3:12 PM, Jimmy Schementi jimmy.scheme...@microsoft.commailto:jimmy.scheme...@microsoft.com wrote: Here are the ideas

[Ironruby-core] Congratulations to IronRuby MVPs: Peter Bacon Darwin and Michael Letterle

2009-01-12 Thread Jimmy Schementi
All, I want to congratulate two new Microsoft Most Valuable Professionals (MVP), Michael Letterle and Peter Bacon Darwin! They are IronRuby MVPs, though officially it says Visual C#. =P Thanks for your hard work! While you're waiting for a build, or just need some mindless activity, here's

[Ironruby-core] IronRuby 1.0 Roadmap

2009-01-13 Thread Jimmy Schementi
http://ironruby.net/Roadmap Here is a rough roadmap (aka, what's left to do) before IronRuby 1.0. More information, especially for the libraries, is coming soon, along with links to tickets tracking these features, etc. Tomas, feel free to make corrections or add to this. Questions, comments,

[Ironruby-core] http://ironruby.net get's a facelift

2009-01-16 Thread Jimmy Schementi
All, http://ironruby.net should look completely different, and that's a good thing. I spent today moving stuff around, deleting, consolidating, etc. The site is more focused on getting and using IronRuby, but don't fear, all the info related to contributing to IronRuby is now on the Github

Re: [Ironruby-core] Zlib::Inflate error when installing gems

2009-01-22 Thread Jimmy Schementi
Please open a bug in rubyforge against me, I'll take a look at it. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Thursday, January 22, 2009 1:59 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Zlib::Inflate

Re: [Ironruby-core] Building IronRuby

2009-01-22 Thread Jimmy Schementi
FYI, Jim (I believe) and I are starting to work out of Git primarily, so we'll be forced to iron out these kinks. Also, preserving commit information between git and tfs is a goal, so no more of the sync with tfs commits ... you'll see the actual msg/author ... and we'll have to get a reliable

[Ironruby-core] DLR Daily Builds (including IronRuby)

2009-01-22 Thread Jimmy Schementi
In case this is new to anyone ... Harry Pierson recently built a daily-build site for the IronPython and DLR Codeplex sites. Good news for IronRuby is it's included in the DLR Codeplex source repository (since IronRuby shares a source repository with DLR and IronPython, and the DLR Codeplex

Re: [Ironruby-core] DLR Daily Builds (including IronRuby)

2009-01-23 Thread Jimmy Schementi
Letterle wrote: I assume this is a Window/.NET build? :) Certainly as far as IronPython goes, binaries compiled on Windows work on Mono (modulo any Mono bugs). Michael On Fri, Jan 23, 2009 at 1:05 AM, Jimmy Schementi jimmy.scheme...@microsoft.commailto:jimmy.scheme...@microsoft.com

Re: [Ironruby-core] DLR Daily Builds (including IronRuby)

2009-01-23 Thread Jimmy Schementi
) Microsoft.Scripting.Hosting.ScriptRuntime:.ctor (Microsoft.Scripting.Hosting.ScriptRuntimeSetup) at Microsoft.Scripting.Hosting.Shell.ConsoleHost.Run (System.String[] args) [0x0] at RubyConsoleHost.Main (System.String[] args) [0x0] On Fri, Jan 23, 2009 at 3:19 PM, Jimmy Schementi jimmy.scheme

Re: [Ironruby-core] Git push

2009-01-27 Thread Jimmy Schementi
Looking at it now ... =P From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, January 27, 2009 2:57 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] Git push As you may have seen via the RSS feed, I have pushed

Re: [Ironruby-core] IronRuby with Asp.Net MVC is possible or not...?

2009-01-27 Thread Jimmy Schementi
== Short Answer http://blog.jimmy.schementi.com/2008/09/aspnet-dynamic-language-support.html http://github.com/jschementi/ironrubymvc We've always been clear on an expected 1.0 date ... sometime in 2009. =) The schedule to 1.0 will be more apparent in the next coming months. Check out

Re: [Ironruby-core] Silverlight + Silverline

2009-02-03 Thread Jimmy Schementi
I'm not sure how it does against the newest version of Rails. http://silverline.schementi.com uses Rails 2.0.2, so if you do gem install rails -v2.0.2 then silverline-demos will work. The last time I spoke about silverline was in this talk:

Re: [Ironruby-core] Git push

2009-02-03 Thread Jimmy Schementi
Don't worry everyone, I'll make a I-Broke-The-Build hat and make Jim wear it all day tomorrow. =) That's if I remember ... which is unlikely. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, February 03, 2009 10:47 PM

[Ironruby-core] http://ironruby.info

2009-02-04 Thread Jimmy Schementi
Check out http://ironruby.info, a new site for tracking IronRuby perf, RubySpec results, and other random nuggets of info. Read more about it here: http://blog.jimmy.schementi.com/2009/02/ironrubyinfo.html ~Jimmy ___ Ironruby-core mailing list

Re: [Ironruby-core] http://ironruby.info

2009-02-04 Thread Jimmy Schementi
Charles Oliver Nutter wrote: Jimmy Schementi wrote: Check out http://ironruby.info, a new site for tracking IronRuby perf, RubySpec results, and other random nuggets of info. Read more about it here: http://blog.jimmy.schementi.com/2009/02/ironrubyinfo.html Nice...I'll have to set

Re: [Ironruby-core] Code Review: netinterop1

2009-02-04 Thread Jimmy Schementi
Sorry about the delay on this. Here are my comments: 1. Does MSpec have shared behaviors, like Rake or Bacon? If so, you should try to remove the duplication of managing engines and whatnot that you have in before/after blocks. For example: shared .NET Test do before { @engine =

Re: [Ironruby-core] Ruby 1.9.1 stable released

2009-02-04 Thread Jimmy Schementi
IronRuby is targeting 1.8.6 compatibility (modulo continuations) with Ruby on Windows first. There are some Ruby 1.9 features which we have designed IronRuby to support in future versions. This will eventually happen, but 1.8.6 compat will need to happen first. -Original Message-

Re: [Ironruby-core] automating VS

2009-02-06 Thread Jimmy Schementi
Na, that was definitely VS 2008. We just had our VS ninja Oleg write a VS extension that hosts the DLR, so Ruby code could control VS. But beats me if I know where that VS extension is. ~js From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of

Re: [Ironruby-core] test .net code with ruby BDD libraries

2009-02-07 Thread Jimmy Schementi
I've using bacon (http://github.com/chneukirchen/bacon) to test C# Silverlight code, and it works great on the desktop as well. It's definitely the smallest of the bdd libraries, and feels fastest, but I've got no data to support that (yet).

Re: [Ironruby-core] test .net code with ruby BDD libraries

2009-02-09 Thread Jimmy Schementi
...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.orgmailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: sabato 7 febbraio 2009 21.14 To: ironruby-core@rubyforge.orgmailto:ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] test .net code with ruby BDD libraries

Re: [Ironruby-core] IIS 7 HttpModule for Rails/Rack with IronRuby

2009-02-09 Thread Jimmy Schementi
Will, That page on github is wildly out of date (and I've updated it to say so). http://ironruby.info will have daily information on where IronRuby is at with supporting RubySpec, as well as other popular Ruby frameworks. Right now it's just RubySpec pass/fail information, but stack traces

Re: [Ironruby-core] How to implement a C# interface from Ruby ?

2009-02-09 Thread Jimmy Schementi
...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: Monday, February 09, 2009 5:43 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] How to implement a C# interface from Ruby ? How does it fail? Nothing fails for me, but how are you trying to use this Ruby class? (test.cs has your c

Re: [Ironruby-core] How to implement a C# interface from Ruby ?

2009-02-09 Thread Jimmy Schementi
From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: Monday, February 09, 2009 5:43 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] How to implement a C# interface from Ruby ? How does it fail? Nothing fails for me

Re: [Ironruby-core] test .net code with ruby BDD libraries

2009-02-10 Thread Jimmy Schementi
Carrero » ir IronRuby 1.0.0.0 on .NET 2.0.50727.3053 Copyright (c) Microsoft Corporation. All rights reserved. require 'rubygems' = true require 'bacon' = true On Mon, Feb 9, 2009 at 10:56 PM, Jimmy Schementi jimmy.scheme...@microsoft.com/mc/compose?to=jimmy.scheme...@microsoft.com wrote

Re: [Ironruby-core] Code Review: bugfixes1

2009-02-10 Thread Jimmy Schementi
Looks good. Removing tags is good =) -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Tuesday, February 10, 2009 4:47 PM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org

Re: [Ironruby-core] IronRuby Mono/Linux Build

2009-02-16 Thread Jimmy Schementi
Awesome! Good choice =) Is there a link to the actual app? From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Michael Letterle Sent: Wednesday, February 11, 2009 8:00 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] IronRuby Mono/Linux

Re: [Ironruby-core] IronRuby Mono/Linux Build

2009-02-17 Thread Jimmy Schementi
/Linux Build http://ironruby.colliertech.org/integrity/ On Mon, Feb 16, 2009 at 8:51 PM, Michael Letterle michael.lette...@gmail.commailto:michael.lette...@gmail.com wrote: Working on that ;) On Mon, Feb 16, 2009 at 7:50 PM, Jimmy Schementi jimmy.scheme...@microsoft.commailto:jimmy.scheme

Re: [Ironruby-core] Debugging rubyspecs

2009-02-18 Thread Jimmy Schementi
You can pass the spec file to mspec itself like: mspec run core/io/popen_close Then I make a call to debugger http://gist.github.com/61605, which breaks on a call to System::Diagnostics::Debugger when a debugger is attached to the app. Unfortunately this breaks in a Ruby method, so you have to

Re: [Ironruby-core] Code Review: command_line

2009-02-20 Thread Jimmy Schementi
Awesomo -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Jim Deville Sent: Thursday, February 19, 2009 4:10 PM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org Subject: [Ironruby-core] Code

Re: [Ironruby-core] Code Review: netinterop1

2009-02-25 Thread Jimmy Schementi
Do people prefer using \ or / as the directory separator in Ruby code? I prefer / since all existing Ruby code uses that, and Ruby on windows understands it as well. Plus you don't have to play the escape-slash game when using double-quoted strings. Also, some folks might be confused at the

Re: [Ironruby-core] Getting started in VB?

2009-02-25 Thread Jimmy Schementi
A ScriptSource isn't compiled code yet, so you'll need to call ScriptSource.Execute() to actually run it. So, your example never ran the string in the code variable. Also, because your action variable contains code that hasn't been compiled, sending it to ObjectOperations.Call() will tell you

Re: [Ironruby-core] Getting started in VB?

2009-02-26 Thread Jimmy Schementi
What does params contain? If I recall, the method you're calling requires two parameters ... From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] On Behalf Of Mr X Enterprises [li...@ruby-forum.com] Sent: Thursday, February 26,

Re: [Ironruby-core] A tiny DSL to build Windows::Forms menus from IronRuby - review wanted

2009-02-27 Thread Jimmy Schementi
Awesome stuff! If you make this into its own github project, I can add it to http://github.com/ironruby/ironruby-contrib as a submodule. That'll force me to keep it updated =) From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Thibaut Barrère

Re: [Ironruby-core] Code Review: assemblydeps

2009-02-27 Thread Jimmy Schementi
Does this work at all in Silverlight? -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Tomas Matousek Sent: Friday, February 27, 2009 4:40 PM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org

Re: [Ironruby-core] Comparing CLR strings and Ruby strings - a slightly surprising behaviour

2009-03-03 Thread Jimmy Schementi
IronPython doesn't have this problem because they use CLR Strings directly; Python strings map well to CLR Strings. Ruby has mutable strings, and CLR Strings are immutable, so IronRuby strings are different types than CLR Strings. Comparison of CLR Strings and Ruby Strings should be possible

[Ironruby-core] ironruby-dev.zip

2009-03-03 Thread Jimmy Schementi
Currently, it's a little hard to find your way around the github repository. To make our crazy directory structure manageable from the command line, the DLR and Languages teams have a developer bat file which sets up paths and helpful aliases to make jumping to important directories and

Re: [Ironruby-core] possible problem on mono

2009-03-03 Thread Jimmy Schementi
Which same error? Is anyone else having problems with igem on Mono? Have you grabbed the build from here: http://github.com/casualjim/ironruby-mono-builds ? ~js -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of

Re: [Ironruby-core] Comparing CLR strings and Ruby strings - a slightly surprising behaviour

2009-03-03 Thread Jimmy Schementi
(This is my understanding of the problem, so Tomas please correct me if it's wrong ... I wasn't involved in the initial decision). The mutableness of a string is the defining distinction, so we don't make CLR string act like a Ruby string in cases, because it won't allow mutation. This is the

Re: [Ironruby-core] Comparing CLR strings and Ruby strings - a slightly surprising behaviour

2009-03-06 Thread Jimmy Schementi
rm -Rf *.to_clr_string = `rm -Rf *` Copying and pasting that result would lead to bad things =P ... so I say no back ticks. Let's stick with single quotes ... it's not a difficult thing to change in the future. ~js -Original Message- From: ironruby-core-boun...@rubyforge.org

Re: [Ironruby-core] please test ironrubymvc

2009-03-06 Thread Jimmy Schementi
Ivan, Thanks for doing this, it's really awesome that you've taken initiative in this project! There's a way to put VS in ASCII mode ... but I don't remember how. I felt that pain when getting the initial version of ironrubymvc set up. I'm working on a silverline port to ASP.NET MVC, so I'll

Re: [Ironruby-core] please test ironrubymvc

2009-03-06 Thread Jimmy Schementi
Yeah, that’s pretty unfortunate. However, Mono needs to also reimplement System.Web.Routing, which is in .NET 3.5, and System.Web.Mvc depends on. So even if MVC was Ms-Pl, they’d still have work to do. Let’s hope (at-least) MVC changes their license. From: ironruby-core-boun...@rubyforge.org

Re: [Ironruby-core] Recommendations for (IronRuby) gem packaging ?

2009-03-15 Thread Jimmy Schementi
Isn't platform used to identify a gem as a JRuby gem? Granted, it's not perfect, but having IronRuby gems set the platform to ironruby would seem to make sense with the current state of rubygems. Is there a reason not to do this, and (other than waiting for changes to rubygems) is there a

Re: [Ironruby-core] Maruku within IronRuby using rexml/document

2009-03-17 Thread Jimmy Schementi
I guess no one has =P REXML is part of the Ruby standard library, and it is pure-Ruby (no C code or anything needed), so it should work, unless we don't support a library that it depends on (which I doubt). Have you tried to run it? ~js From: ironruby-core-boun...@rubyforge.org

Re: [Ironruby-core] Problem with generic method resolution

2009-03-17 Thread Jimmy Schementi
Did anyone reply to you? If you haven't submitted a bug on RubyForge, please do. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Stefan Dobrev Sent: Monday, March 09, 2009 7:57 PM To: ironruby-core@rubyforge.org Subject: [Ironruby-core] Problem

[Ironruby-core] [ATTN] IronRuby 0.3 Released

2009-03-20 Thread Jimmy Schementi
I'm pleased to announce a new release of IronRuby, IronRuby 0.3! Download IronRuby 0.3 http://ironruby.net/Download (Note: if the download fails, just try again ... RubyForge may still be propagating the package) Release notes and changes:

Re: [Ironruby-core] Problem getting IronRuby running - it won't compile

2009-03-23 Thread Jimmy Schementi
Anyone care if we completely kill the SVN repository so folks don't stumble upon it anymore? From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] on behalf of George Mauer [li...@ruby-forum.com] Sent: Sunday, March 22, 2009

Re: [Ironruby-core] [patch] rake file path issue

2009-03-23 Thread Jimmy Schementi
Jim, for this patch (a single-character change) I think we can treat it as a bug-report, and make the fix. From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] on behalf of Jim Deville [jdevi...@microsoft.com] Sent: Monday,

Re: [Ironruby-core] Debugging ruby code in a host

2009-03-23 Thread Jimmy Schementi
When you create the ScriptRuntimeSetup, do this: setup.Debug = true; That will tell the DLR to generate debuggable code. From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] on behalf of Ivan Porto Carrero [i...@flanders.co.nz] Sent:

Re: [Ironruby-core] Flagged enums

2009-03-25 Thread Jimmy Schementi
IronRuby should support this. Enum values are ints anyway, so that behavior shouldn't be hard to implement. From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] on behalf of Thibaut Barrère [thibaut.barr...@gmail.com] Sent: Wednesday,

Re: [Ironruby-core] Silverlight Debug out of the box.

2009-03-26 Thread Jimmy Schementi
It looks for silverlight in C:\Program files\Microsoft Silverlight \2.0.x.x\, which can change depending on the version of SL you have installed. It does this so you can build for SL without having the SLTools installed. I suspect we have the version of SL wrong in those project files. ~Jimmy

Re: [Ironruby-core] Silverlight Debug out of the box.

2009-03-26 Thread Jimmy Schementi
From: ironruby-core-boun...@rubyforge.org [ironruby-core-boun...@rubyforge.org] on behalf of Jb Evain [...@nurv.fr] Sent: Thursday, March 26, 2009 9:20 AM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Silverlight Debug out of the box. On 3/26/09, Jimmy

Re: [Ironruby-core] Pair debugging

2009-03-26 Thread Jimmy Schementi
Awesome idea! We don't use these newfangled collaboration tools enough, so I'm all for whatever can make collaboration easier =) From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Shri Borde Sent: Thursday, March 26, 2009 4:06 PM To:

Re: [Ironruby-core] Code Review: Various .NET interop tests

2009-03-27 Thread Jimmy Schementi
Looks good to me. I left comments where appropriate, but nothing stopping you from checking in. From: Jim Deville Sent: Friday, March 27, 2009 11:40 AM To: IronRuby External Code Reviewers Cc: ironruby-core@rubyforge.org Subject: Code Review: Various .NET interop tests This is one of the weak

Re: [Ironruby-core] Mapping multiple pushes to a single review

2009-03-30 Thread Jimmy Schementi
As a slight variation/summarization, I'd suggest making a branch for any specific change you'll be making, especially if it'll be made up of multiple commits. Pulls could be made on master, and merged into the branch as needed. Then, you could rebase and present the change as one commit to your

Re: [Ironruby-core] Error when running Cucumber examples with IronRuby

2009-03-31 Thread Jimmy Schementi
The svn sources have been nuked from /trunk. I left the /tags directory just in case anyone needs the sources to a previous build that isn't in git. /trunk now only have one file in it ... a README that directs people to github: http://ironruby.rubyforge.org/svn/trunk.

Re: [Ironruby-core] lol.. google undo send definitely is a fad

2009-03-31 Thread Jimmy Schementi
Jim Deville wrote: As was pointed out by some people around here, Outlook has had a similar feature for a while, that gives more customization. It just requires you to make a rule ;) Jim, are you really pimping Outlook? ;) Charles Oliver Nutter wrote: And requires the receiver to accept

Re: [Ironruby-core] [patch] agdlr: Fix for Package.NormalizePath

2009-04-01 Thread Jimmy Schementi
They are applied in the dev/mono branch, and I can apply them for 0.5.1. ~Jimmy Sent from my phone On Apr 1, 2009, at 8:01 AM, Jb Evain j...@nurv.fr wrote: Hey, This patch is part of a bunch I sent to Jimmy privately. But they haven't been applied, so am resending them here for review.

Re: [Ironruby-core] [patch] agdlr: Fix for Package.NormalizePath

2009-04-01 Thread Jimmy Schementi
Jimmy, On 4/1/09, Jimmy Schementi jimmy.scheme...@microsoft.com wrote: They are applied in the dev/mono branch, and I can apply them for 0.5.1. Yeah, that would be cool. Is there any reason for not merging them in origin? -- Jb Evain j...@nurv.fr

Re: [Ironruby-core] defined?(xxx) behaves differently when called from Silverlight

2009-04-01 Thread Jimmy Schementi
Granted, it shouldn't throw ... and doesn't for me in SL. rb defined?(System::Windows::Forms) = nil rb defined?(System::Windows::Forms::Controls) = nil -Original Message- From: Jimmy Schementi Sent: Wednesday, April 01, 2009 4:13 PM To: ironruby-core@rubyforge.org Subject: RE

Re: [Ironruby-core] defined?(xxx) behaves differently when called from Silverlight

2009-04-01 Thread Jimmy Schementi
System::Windows::Forms doesn't exist in Silverlight. You want System::Windows::Controls. -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Thibaut Barrère Sent: Wednesday, April 01, 2009 1:08 PM To: ironruby-core

Re: [Ironruby-core] defined?(xxx) behaves differently when called from Silverlight

2009-04-02 Thread Jimmy Schementi
The folder SL is installed into is the version; if you're using SL2 it should be C:\Program Files\Microsoft Silverlight\2.0.40115.0\. SL3 Beta is C:\Program Files\Microsoft Silverlight\3.0.40307.0\. http://jimmy.schementi.com/silverlight/repro-defined.zip Unzip that and double-click on the

[Ironruby-core] Proposal: Moving IronRuby bugs to CodePlex

2009-04-02 Thread Jimmy Schementi
(I originally planned on sending this yesterday, but I waited until today to remove the April Fools possibility =P) I'd like to propose moving IronRuby's bugs off of RubyForge. CodePlex looks like the best option, mainly due to the voting feature for bugs. Here are some possible options for

Re: [Ironruby-core] defined?(xxx) behaves differently when called from Silverlight

2009-04-02 Thread Jimmy Schementi
Ah, you were on a Mac. Let me know if it happens again. -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Thibaut Barrère Sent: Thursday, April 02, 2009 4:31 PM To: ironruby-core@rubyforge.org Subject: Re:

Re: [Ironruby-core] defined?(xxx) behaves differently when called from Silverlight

2009-04-02 Thread Jimmy Schementi
Woops, hit send too soon. I just tested it out on a Mac in FF3 and Safari3, and nothing blew up and the console rendered fine. You're future mail said things work, so I guess I'm just confirming that your prior installation was all-sorts-of-crazy. Also, Chiron on the Mac wouldn't cause this,

Re: [Ironruby-core] Status of rubygems unit tests

2009-04-03 Thread Jimmy Schementi
Thanks for the update. I can add this to the runs of http://ironruby.info so we have up-to-date stats about RubyGems. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Shri Borde Sent: Friday, April 03, 2009 2:15 PM To:

Re: [Ironruby-core] Requesting contributions to IronRuby

2009-04-05 Thread Jimmy Schementi
Mark and I have spoke about this before, and really what we need is to pick a .NET mocking framework and write a RSpec/Mocha-like wrapper around it, as the APIs provided by Moq, NMock, etc need some rubification. As Shri said, the DLR-itself won't help with this. Mark, does this make sense?

Re: [Ironruby-core] Proposal: Moving IronRuby bugs to CodePlex

2009-04-09 Thread Jimmy Schementi
[mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: Tuesday, April 07, 2009 5:02 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Proposal: Moving IronRuby bugs to CodePlex No objections/concerns/thoughts/concerns/praises/gifts-of-gold-frankincense-and-myrrh? Ok

[Ironruby-core] Code Review: Fixes for File.dirname

2009-04-12 Thread Jimmy Schementi
Fixes for File.dirname; makes all core/file/dirname specs pass. For Rails to find log/development.log during startup. Fixes http://ironruby.codeplex.com/WorkItem/View.aspx?WorkItemId=499 ___ Ironruby-core mailing list Ironruby-core@rubyforge.org

Re: [Ironruby-core] Code Review: Fixes for File.dirname

2009-04-12 Thread Jimmy Schementi
And now with the actual review link =P http://github.com/jschementi/ironruby/commit/689aeec6046bc8ba76016f6dfa1bd947e8e3ce15 From: Jimmy Schementi Sent: Sunday, April 12, 2009 12:56 AM To: ironruby-core@rubyforge.org Cc: IronRuby External Code Reviewers Subject: Code Review: Fixes

Re: [Ironruby-core] Namespace Conflict System.Linq

2009-04-14 Thread Jimmy Schementi
Yes, they are going to merge. However, I'm pretty sure there's no good way to get rid of the warnings without us having to rewrite the namespaces of Microsoft.Scripting.Core.dll. If you really want to get rid of those warnings, you can grab IronRuby from http://dlr.codeplex.com, which has

Re: [Ironruby-core] Failures in core\module\autoload_spec.rb

2009-04-17 Thread Jimmy Schementi
I don't recall ever running into this, but I'm fixing some autoload issues right now, so I'll take a look. From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Shri Borde Sent: Friday, April 17, 2009 3:54 PM To: ironruby-core@rubyforge.org Subject:

[Ironruby-core] Code Review: __FILE__ and $PROGRAM_NAME paths

2009-04-20 Thread Jimmy Schementi
http://github.com/jschementi/ironruby/commit/3ef1b6ac9718d0c55796c2818da797ea8bab7275 Makes __FILE__ and $PROGRAM_NAME (and $0) have canonicalized paths when Ruby is hosted from ir.exe. However, __FILE__ is not messed with when including a file via require/load. Fixes

Re: [Ironruby-core] WinForms event handling

2009-04-21 Thread Jimmy Schementi
In the latest builds this will work: s = System::String.new 'fubar' = 'fubar' s.class = System::String Note that the result is single-quoted; that's a little hint that it's a System::String rather than a Ruby String. The reason they are different is mutability; Ruby strings are mutable,

Re: [Ironruby-core] Case of drive letter

2009-04-21 Thread Jimmy Schementi
(Responding late ... hopefully this is still useful) __FILE__ always uses lower-case drive letter __FILE__ is just the value you gave to require/load. __FILE__ and $PROGRAM_NAME only get munged with when running ruby.exe, but it doesn't touch casing, only changes all directory separators to

Re: [Ironruby-core] Failures in core\module\autoload_spec.rb

2009-04-21 Thread Jimmy Schementi
[mailto:ironruby-core-boun...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: Friday, April 17, 2009 4:13 PM To: ironruby-core@rubyforge.org Subject: Re: [Ironruby-core] Failures in core\module\autoload_spec.rb I don't recall ever running into this, but I'm fixing some autoload issues right now, so

Re: [Ironruby-core] Proposal: Moving IronRuby bugs to CodePlex

2009-04-21 Thread Jimmy Schementi
://github.com/blog/411-github-issue-tracker On Apr 10, 2009, at 6:38 AM, Jimmy Schementi wrote: http://ironruby.codeplex.com is live. Please direct any bug submissions and downloads of IronRuby to this site, rather than RubyForge. RubyForge bugs will be moved (as appropriate) to CodePlex over time

Re: [Ironruby-core] Code Review: __FILE__ and $PROGRAM_NAME paths

2009-04-22 Thread Jimmy Schementi
/Glob.cs From: Tomas Matousek Sent: Tuesday, April 21, 2009 5:38 PM To: Jimmy Schementi; Jim Deville; ironruby-core@rubyforge.org Cc: IronRuby External Code Reviewers Subject: RE: Code Review: __FILE__ and $PROGRAM_NAME paths Could you remove public static MutableString/*!*/ CanonicalizePath

Re: [Ironruby-core] Code Review: core/module/autoload

2009-04-22 Thread Jimmy Schementi
...@rubyforge.org] On Behalf Of Jimmy Schementi Sent: Monday, April 20, 2009 11:52 PM To: ironruby-core@rubyforge.org Cc: IronRuby External Code Reviewers Subject: [Ironruby-core] Code Review: core/module/autoload http://github.com/jschementi/ironruby/commit/bbfa3c4a35cc331e58fb9da9a4

Re: [Ironruby-core] Sinatra fails on both 0.3 and custom build

2009-04-22 Thread Jimmy Schementi
Haven't looked at Sinatra in a couple weeks, but I'm planning on demoing it at RailsConf, so I'll be looking at it very soon =) -Original Message- From: ironruby-core-boun...@rubyforge.org [mailto:ironruby-core- boun...@rubyforge.org] On Behalf Of Ben Hall Sent: Wednesday, April 22,

Re: [Ironruby-core] Planning?

2009-04-23 Thread Jimmy Schementi
Ivan, I’m not sure if anyone ever replied to this, but I can help clarify some things for you. http://en.oreilly.com/oscon2009/public/schedule/detail/7965 IronRuby will be 1.0 by Oscon2009. I’m showing what we’ve got so far with Rails at RailsConf in a couple weeks. I’ve been updating the

  1   2   3   4   >