If you have RUBYOPTS set to "-rubygems" (as is done by default by the MRI one-click installer), RubyGems will get first shot at finding "mspec" and will look at installed gems before looking at $LOAD_PATH. That could also be the issue. Just using the different version of mspec.bat may not fix the issue as it just runs the first "ruby.exe" it finds on the path, and could still get tripped up over the "-rubygems" issue...
Jim, how different are the two versions of mspec supposed to be? Do you know what the RubySpec team's plan is to unify them? Do we know why the gem will not work, and is there a bug to track the issue? -----Original Message----- From: [email protected] [mailto:[email protected]] On Behalf Of Jimmy Schementi Sent: Wednesday, April 29, 2009 12:29 PM To: [email protected] Subject: Re: [Ironruby-core] mspec error undefined method `filtered' for MSpecScript:Class It's because the "mspec" command you're running lives in your C:\ruby\bin directory, not C:\...\ironruby\Merlin\External.LCA_RESTRICTED\Languages\IronRuby\mspec\mspec\bin. Running "where mspec" should show something like this: C:\dev\jschementi-ironruby\Merlin\Main\Languages\Ruby>where mspec C:\dev\jschementi-ironruby\Merlin\External.LCA_RESTRICTED\Languages\IronRuby\mspec\mspec\bin\mspec C:\dev\jschementi-ironruby\Merlin\External.LCA_RESTRICTED\Languages\IronRuby\mspec\mspec\bin\mspec.bat If you don't really need the mspec gem installed, removing that would probably remedy this. > -----Original Message----- > From: [email protected] [mailto:ironruby-core- > [email protected]] On Behalf Of [email protected] > Sent: Wednesday, April 29, 2009 12:23 PM > To: [email protected] > Subject: Re: [Ironruby-core] mspec error undefined method `filtered' > for MSpecScript:Class > > Thank you, I did run the dev.bat but still get same error. I'm > investigating why it load from gems rather than what get in .mspecrc > file. > > Bests, > - Jirapong > > On Apr 30, 2009, at 1:58 AM, Jimmy Schementi wrote: > > > Sounds like you're not running Dev.bat. Before doing anything with > > IronRuby (when you get it from the git repo), please run Merlin/Main/ > > Languages/Ruby/Scripts/Dev.bat. That will make sure things are all > > set up properly. To make this easy, just create a ironruby.bat file > > somewhere which calls Dev.bat. I even add that as the first shortcut > > in my quicklaunch toolbar so WIN+1 will launch a dev.bat cmd.exe > > window. > > > > ~js > > > >> -----Original Message----- > >> From: [email protected] [mailto:ironruby-core- > >> [email protected]] On Behalf Of Jim Deville > >> Sent: Wednesday, April 29, 2009 11:53 AM > >> To: [email protected] > >> Subject: Re: [Ironruby-core] mspec error undefined method `filtered' > >> for MSpecScript:Class > >> > >> The gem won't work for now. Make sure that the mspec that runs is > the > >> Mspec in Merlin/External.LCA_RESTRICTED. > >> > >> JD > >> > >> -----Original Message----- > >> From: [email protected] <[email protected]> > >> Sent: April 29, 2009 11:12 AM > >> To: [email protected] <[email protected]> > >> Subject: [Ironruby-core] mspec error undefined method `filtered' for > >> MSpecScript:Class > >> > >> > >> Have any one got this error? and to fix it :-) > >> > >> c:\ironruby\Merlin\External.LCA_RESTRICTED\Languages\IronRuby\mspec > >> \default.mspec:12: undefined method `filtered' for MSpecScript:Class > >> (NoMethodError) > >> from C://Documents and Settings/Administrator/.mspecrc:15:in > >> `load' > >> from C://Documents and Settings/Administrator/.mspecrc:15 > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/lib/mspec/ > >> utils/script.rb:72:in `load' > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/lib/mspec/ > >> utils/script.rb:72:in `load' > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/lib/mspec/ > >> utils/script.rb:71:in `each' > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/lib/mspec/ > >> utils/script.rb:71:in `load' > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/lib/mspec/ > >> utils/script.rb:213:in `main' > >> from c:/ruby/lib/ruby/gems/1.8/gems/mspec-1.5.11/bin/mspec:7 > >> from c:/ruby/bin/mspec:16:in `load' > >> from c:/ruby/bin/mspec:16 > >> > >> Thanks in advance. > >> -Jirapong > >> _______________________________________________ > >> Ironruby-core mailing list > >> [email protected] > >> http://rubyforge.org/mailman/listinfo/ironruby-core > >> > >> _______________________________________________ > >> Ironruby-core mailing list > >> [email protected] > >> http://rubyforge.org/mailman/listinfo/ironruby-core > > > > _______________________________________________ > > Ironruby-core mailing list > > [email protected] > > http://rubyforge.org/mailman/listinfo/ironruby-core > > _______________________________________________ > Ironruby-core mailing list > [email protected] > http://rubyforge.org/mailman/listinfo/ironruby-core _______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core _______________________________________________ Ironruby-core mailing list [email protected] http://rubyforge.org/mailman/listinfo/ironruby-core
