IronRuby
by Alex Moore on Sep 03, 2010
- 447 views
An introduction to IronRuby, a ruby implementation built on the .Net framework and the Dynamic Language Runtime. This presentation was originally given at a Columbus Ruby Brigade meeting.
An introduction to IronRuby, a ruby implementation built on the .Net framework and the Dynamic Language Runtime. This presentation was originally given at a Columbus Ruby Brigade meeting.
Accessibility
Categories
Tags
Upload Details
Uploaded via SlideShare as Apple Keynote
Usage Rights
© All Rights Reserved
Statistics
- Favorites
- 0
- Downloads
- 0
- Comments
- 0
- Embed Views
- Views on SlideShare
- 446
- Total Views
- 447
DLR provides:
Dynamic type system
Dynamic Method Dispatch
Dynamic Code Generation
Hosting API
IronRuby alows you to access compiled .NET code in Ruby.
It will even mangle method names to be more like Ruby’s naming idioms
load_assembly is a new method that IronRuby is similar to require, but also adds the Global Assembly Cache to the list of locations it searches for.
It will also look for the assembly by short name i.e. “System” instead of mscorlib.dll