Mohammad Azam
2009-Jul-06 19:30 UTC
[Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
I am trying to download RSpec but I keep getting the following error:>>> gem install rspecunknown: parenthesize argument(s) for future version (Microsoft::Scripting::Synt axErrorException)>>> igem install rspecunknown: parenthesize argument(s) for future version (Microsoft::Scripting::Synt axErrorException) I am using IronRuby 0.6 Thanks, -- Posted via http://www.ruby-forum.com/.
Kevin Radcliffe
2009-Jul-06 19:36 UTC
[Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
Mohammad Azam wrote:> I am trying to download RSpec but I keep getting the following error: > > >>>> gem install rspec > unknown: parenthesize argument(s) for future version > (Microsoft::Scripting::Synt > axErrorException) > >>>> igem install rspec > unknown: parenthesize argument(s) for future version > (Microsoft::Scripting::Synt > axErrorException) > > I am using IronRuby 0.6 > > Thanks,Are you doing this from within ir.exe? gem/igem should be run directly from the command line and not from within ir.exe. Just want to see where you''re coming from executing this -- Posted via http://www.ruby-forum.com/.
Mohammad Azam
2009-Jul-06 19:38 UTC
[Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
Thanks! I got it working! Currently downloading rspec! -- Posted via http://www.ruby-forum.com/.
Jimmy Schementi
2009-Jul-06 19:38 UTC
[Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
Installing works (pass --no-rdoc --no-ri if you want it to skip those and go
much faster). Also make sure GEM_PATH and GEM_HOME aren''t set so gems
are used/installed from lib\IronRuby\gems. Here''s my session:
C:\Users\jimmysch\dev\releases\ironruby-0.6.0\bin>igem install rspec
**************************************************
Thank you for installing rspec-1.2.7
Please be sure to read History.rdoc and Upgrade.rdoc
for useful information about this release.
**************************************************
Successfully installed rspec-1.2.7
1 gem installed
Installing ri documentation for rspec-1.2.7...
Installing RDoc documentation for rspec-1.2.7...
Could not find main page README.rdoc
Could not find main page README.rdoc
Could not find main page README.rdoc
Could not find main page README.rdoc
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\bin>echo %GEM_PATH%
%GEM_PATH%
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\bin>echo %GEM_HOME%
%GEM_HOME%
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\bin>cd
..\lib\IronRuby\gems\1.8\gems
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\lib\IronRuby\gems\1.8\gems>dir
Volume in drive C has no label.
Volume Serial Number is EC3A-62D3
Directory of
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\lib\IronRuby\gems\1.8\gems
07/06/2009 12:33 PM <DIR> .
07/06/2009 12:33 PM <DIR> ..
07/06/2009 12:33 PM <DIR> rspec-1.2.7
0 File(s) 0 bytes
3 Dir(s) 72,197,648,384 bytes free
C:\Users\jimmysch\Documents\Downloads\ironruby-0.6.0\lib\IronRuby\gems\1.8\gems>
________________________________________
From: ironruby-core-bounces at rubyforge.org [ironruby-core-bounces at
rubyforge.org] on behalf of Mohammad Azam [lists at ruby-forum.com]
Sent: Monday, July 06, 2009 12:30 PM
To: ironruby-core at rubyforge.org
Subject: [Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
I am trying to download RSpec but I keep getting the following error:
>>> gem install rspec
unknown: parenthesize argument(s) for future version
(Microsoft::Scripting::Synt
axErrorException)
>>> igem install rspec
unknown: parenthesize argument(s) for future version
(Microsoft::Scripting::Synt
axErrorException)
I am using IronRuby 0.6
Thanks,
--
Posted via http://www.ruby-forum.com/.
_______________________________________________
Ironruby-core mailing list
Ironruby-core at rubyforge.org
http://rubyforge.org/mailman/listinfo/ironruby-core
Kevin Radcliffe
2009-Jul-06 19:45 UTC
[Ironruby-core] IronRuby 0.6 and Downloading RSpec Through Gem
Mohammad Azam wrote:> Thanks! I got it working! Currently downloading rspec!Great! By the way, if rspec ends up being too heavyweight for what you are doing, you could also try bacon: (Installs through igem the same way rspec did) http://github.com/chneukirchen/bacon/tree/master I found it through Jimmy''s blog here: http://blog.jimmy.schementi.com/2009/03/testing-c-silverlight-apps-with.html -- Posted via http://www.ruby-forum.com/.