IronRuby is an implementation of Ruby on the .NET platform
It isn't integrated in visual studio yet but you can use visual studio to
debug ironruby code.
There is no intellisense for ironruby and you will struggle to find any IDE
that has some kind of properly working autocomplete like intellisense for
the ruby language. You can use the console and ask the type for its methods
if you want to use intellisense primarily for discovery.

For ruby objects

get all methods
System::String.methods

get instance methods
System::String.instance_methods

get class (static) methods
System::String.methods - System::String.instance_methods


To get started extract the downloaded zip file to a folder on your drive and
add that folder\bin to your PATH environment variable
for example C:\ironruby\bin if you extracted to C:\ironruby


---
Met vriendelijke groeten - Best regards - Salutations
Ivan Porto Carrero
Blog: http://flanders.co.nz
Twitter: http://twitter.com/casualjim
Author of IronRuby in Action (http://manning.com/carrero)



On Mon, Oct 5, 2009 at 6:02 PM, Tom Groff <li...@ruby-forum.com> wrote:

> Hello everyone,
>
> I guess I am looking for an overview of IronRuby.
>
> My impression was that one could use it to compile ruby apps using
> VS.NET.
> using the VS IDE with debugging and Intellisense.
>
> Is this correct or is IronRuby something else?
>
> ...
>
> Also I do not see any reference as to what to do with the downloaded Zip
> file.
> from:  http://www.ironruby.net/Download
>
> The getting started section doesn't refer to it in any way that I can
> see.
> http://www.ironruby.net/Documentation/Getting_Started
>
> How does one install the zip file properly?
>
> Thanks,
> --
> Posted via http://www.ruby-forum.com/.
> _______________________________________________
> Ironruby-core mailing list
> Ironruby-core@rubyforge.org
> http://rubyforge.org/mailman/listinfo/ironruby-core
>
_______________________________________________
Ironruby-core mailing list
Ironruby-core@rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core

Reply via email to