[Ironruby-core] Using the generated initializer
Ivan Porto Carrero
ivan at flanders.co.nz
Sun Feb 1 14:03:03 EST 2009
Hi
I thought I created a ruby module and ruby class but I must be doing
something wrong.
using RubyMethodAttributes=IronRuby.Runtime.RubyMethodAttributes;
using RubyModuleDefinition = IronRuby.Runtime.RubyModuleAttribute;
using RubyClassDefinition = IronRuby.Runtime.RubyClassAttribute;
using RubyMethodDefinition = IronRuby.Runtime.RubyMethodAttribute;
namespace IronRubyMvcLibrary.Controllers
{
[RubyModuleDefinition("IronRubyMvc")]
public static class IronRubyMvcModule
{
[RubyClassDefinition("Controller", Extends =
typeof(RubyController))]
public class RubyControllerOps
{
[RubyMethodDefinition("info",
RubyMethodAttributes.PublicInstance)]
public static void Info(RubyController self)
{
self.ViewData().Add("Platform", "IronRuby Mvc 1.0");
}
}
}
}
I then used the classinitgenerator to create an initializer class.
But when I require the assembly after compiling I can't get to IronRubyMvc
or the class.
Do I need to do something else?
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://rubyforge.org/pipermail/ironruby-core/attachments/20090201/095081b5/attachment.html>
More information about the Ironruby-core
mailing list