How to install MacRuby-experimental and keep the stable version 0.4
Hi all, I would like to try MRE[1] on my laptop with coexisting the last stable version 0.4 To do that, I have installed LLVM into a directory named ~/local and I have specified during the installation of MRE[1] that rake must install it into the directory ~/Library/Frameworks with the following commands: rake all framework_instdir=~/Library/Frameworks rake install Excepted that doesn't work and my directory ~/Library/Frameworks doesn't exist after the installation of MRE[1]. I don't want to install MRE in my system, but only a local directory to my user account 1. MacRuby-experimental (http://svn.macosforge.org/repository/ruby/MacRuby/branches/experimental) Stephane Thank you so much
Hi Stephane, The experimental branch does not install yet. The only thing you can do is to build miniruby (rake miniruby) and use that. Eg: $ ./miniruby -e "p :foo" Eloy On Apr 6, 2009, at 12:31 PM, Stephane Wirtel wrote:
Hi all,
I would like to try MRE[1] on my laptop with coexisting the last stable version 0.4
To do that, I have installed LLVM into a directory named ~/local and I have specified during the installation of MRE[1] that rake must install it into the directory ~/Library/Frameworks with the following commands:
rake all framework_instdir=~/Library/Frameworks rake install
Excepted that doesn't work and my directory ~/Library/Frameworks doesn't exist after the installation of MRE[1].
I don't want to install MRE in my system, but only a local directory to my user account
1. MacRuby-experimental (http://svn.macosforge.org/repository/ruby/MacRuby/branches/experimental )
Stephane
Thank you so much _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Hi Eloy, Thank you for your reply, What's the relation between miniruby and MacRuby ? Stephane On 06 Apr 2009, at 12:39, Eloy Duran wrote:
Hi Stephane,
The experimental branch does not install yet. The only thing you can do is to build miniruby (rake miniruby) and use that. Eg: $ ./miniruby -e "p :foo"
Eloy
On Apr 6, 2009, at 12:31 PM, Stephane Wirtel wrote:
Hi all,
I would like to try MRE[1] on my laptop with coexisting the last stable version 0.4
To do that, I have installed LLVM into a directory named ~/local and I have specified during the installation of MRE[1] that rake must install it into the directory ~/Library/Frameworks with the following commands:
rake all framework_instdir=~/Library/Frameworks rake install
Excepted that doesn't work and my directory ~/Library/Frameworks doesn't exist after the installation of MRE[1].
I don't want to install MRE in my system, but only a local directory to my user account
1. MacRuby-experimental (http://svn.macosforge.org/repository/ruby/MacRuby/branches/experimental )
Stephane
Thank you so much _______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
Stéphane Wirtel stephane.wirtel@gmail.com
On Apr 6, 2009, at 12:58 PM, Stéphane Wirtel wrote:
Hi Eloy,
Thank you for your reply,
What's the relation between miniruby and MacRuby ?
miniruby is basically the same as the ruby binary that we all know and love, but _before_ it is installed. If you compile ruby (any MRI version) you will get this binary in the source root. Note that is does not add lib/ to the load path etc, so you'll need to do add it yourself when needed. For instance: $ ./miniruby -I./lib -e "require 'rbconfig'" Eloy
Thank you, Stef Eloy Duran wrote:
On Apr 6, 2009, at 12:58 PM, Stéphane Wirtel wrote:
Hi Eloy,
Thank you for your reply,
What's the relation between miniruby and MacRuby ?
miniruby is basically the same as the ruby binary that we all know and love, but _before_ it is installed. If you compile ruby (any MRI version) you will get this binary in the source root.
Note that is does not add lib/ to the load path etc, so you'll need to do add it yourself when needed. For instance: $ ./miniruby -I./lib -e "require 'rbconfig'"
Eloy
_______________________________________________ MacRuby-devel mailing list MacRuby-devel@lists.macosforge.org http://lists.macosforge.org/mailman/listinfo.cgi/macruby-devel
participants (3)
-
Eloy Duran
-
Stephane Wirtel
-
Stéphane Wirtel