Re: [MacRuby-devel] MacRuby-devel Digest, Vol 36, Issue 48
Thanks Laurent You are right: rake clean rake sudo rm -i -R /Library/Frameworks/MacRuby.framework/ rake install solved and now I've a 0.10 trunk working for my test purpose. now i've only to reinstall the gems because gem list --local don't show gems any more, but this in not a problem since I can reinstall gems. very fine! Regards, Franco
Date: Sat, 26 Feb 2011 02:13:53 -0800 From: Laurent Sansonetti <lsansonetti@apple.com> To: "MacRuby development discussions." <macruby-devel@lists.macosforge.org> Subject: Re: [MacRuby-devel] macgem and macirb broken after trunk r5248 (0.10) install Message-ID: <6ED0E33D-CF63-4CAB-9B4F-8A265D9DB293@apple.com> Content-Type: text/plain; charset="us-ascii"
Hi Franco,
As the version number got changed, I recommend starting with a fresh copy of MacRuby, by doing a `rake clean'. Then, you can build the project as usual, then you may want to delete the /Library/Frameworks/MacRuby.framework directory before doing a `rake install' (though this should not be necessary).
Laurent
On Feb 26, 2011, at 1:09 AM, Franco Rondini wrote:
Hello guys, After checking out r5248 trunk (0.10) ( my previous svn co was of r5235 (0.9)) the: rake jobs=2 it's OK sudo rake install aborts this way:
/usr/bin/install -c -m 0755 ext/bigdecimal/lib/bigdecimal/jacobian.rbo /Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/site_ruby/1.9.2/bigdecimal install: /Library/Frameworks/MacRuby.framework/Versions/0.10/usr/lib/ruby/site_ruby/1.9.2/bigdecimal: No such file or directory rake aborted!
so i fix it making the missing path by hand to finally get the 0.10 installed:
cd /Library/Frameworks/MacRuby.framework/Versions/ mkdir 0.10 cd 0.10 mkdir usr cd usr mkdir lib cd lib mkdir ruby cd ruby mkdir site_ruby cd site_ruby mkdir 1.9.2 cd 1.9.2 mkdir bigdecimal cd bigdecimal
cd ~Projects/macruby/MacRuby-trunk sudo rake install [snip] ** Execute install MacBook-di-Franco-Rondini:MacRuby-trunk ronda$ macruby --version MacRuby 0.10 (ruby 1.9.2) [universal-darwin10.0, x86_64]
Unfortunately the following problems have arisen:
macirb /usr/local/bin/macirb:3:in `<main>': no such file to load -- ripper/core (LoadError) macgem /usr/local/bin/macgem:9:in `<main>': uninitialized constant Gem::ConfigFile::YAML (NameError) MacBook-di-Franco-Rondini:MacRuby-trunk ronda$
could it be something wrong in my environment settings? ..btw with the previous revisions, build and install without problems Thanks, Bye Franco
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (1)
-
Franco Rondini