Is it currently possible with pre release of ironruby to run rubygems? It seems as if I have to set an environment variable to find them?
相关问题
- How to install mysql2 gem on Windows
- unable to update gems on mac osx - Gem::RemoteFetc
- AWS Lambda: Ruby function failing to load gem
- Rails can't find the module, if config.cache_c
- Latest omniauth-facebook gem breaks devise
相关文章
- bundle update fails : marshal data too short
- Rspec Testing of real time results through mTurk
- how to specify path for dependent gem in gemspec f
- How does bundler work (in general)?
- Can't install mysql2 for rails 3 on Windows
- Bundle says gem is missing - but it's not?
- Ruby on Rails Win7 x64?
- Using selenium and Appium is it possible to change
You've been able to run rubygems under IronRuby for quite a while now. Simply download and install the latest IronRuby from codeplex, and run
igem
on the command linewith IronRuby 1.0 Alpha 2. You should able to get igem.bat out of the box. According to Jim Deville on Nov 19 2008
Since then, We're now have official site with daily build. You can find at http://www.ironruby.net/Download
After than, Set GEM_PATH to your \lib\ruby\gems\1.8 directory, e.g. c:\ruby\lib\ruby\gems\1.8
Test with
if you set ENV['GEM_PATH'] correctly before using rubygems, then gems will work sometimes under IronRuby. I'm actually looking at fixing this right now.
Also, this kind of question is probably better suited for the IronRuby mailing list than it is for StackOverflow.