views:

21

answers:

1

Hi All,

Just installed IronRuby 1.1. I'm trying to take a look at rake and albacore. After installing ironruby, I am able to hit a command prompt by typing ir, and I am able to do simple puts, but when I try to run rake, I get the error

undefined method `rake' for main:Object

How do I resolve this? Any ideas?

Thanks,
~ck in San Diego

+2  A: 

rake is an executable Ruby script that you call from the Windows command line, not a Ruby method that you call from IRb.

Jörg W Mittag