This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Baz | |
def hello | |
puts "Baz#hello called" | |
super | |
end | |
end | |
class Foo | |
def hello |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Baz | |
def hello | |
"baz " + super | |
end | |
end | |
module Bar | |
def hello | |
"bar" | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git clone https://github.com/ruby/ruby.git reproduce_test_runner_problems | |
cd reproduce_test_runner_problems | |
autoconf | |
./configure | |
make | |
make test | |
./ruby -I. -Ilib test/runner.rb |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Andrew-Grimms-MacBook-Pro:ruby agrimm$ ./configure | |
checking build system type... x86_64-apple-darwin10.8.0 | |
checking host system type... x86_64-apple-darwin10.8.0 | |
checking target system type... x86_64-apple-darwin10.8.0 | |
checking for gcc... gcc | |
checking for C compiler default output file name... a.out | |
checking whether the C compiler works... yes | |
checking whether we are cross compiling... no | |
checking for suffix of executables... | |
checking for suffix of object files... o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Andrew-Grimms-MacBook-Pro:ruby-head agrimm$ mate configure | |
Andrew-Grimms-MacBook-Pro:ruby-head agrimm$ ./configure | |
checking build system type... x86_64-apple-darwin10.8.0 | |
checking host system type... x86_64-apple-darwin10.8.0 | |
checking target system type... x86_64-apple-darwin10.8.0 | |
checking for gcc... gcc | |
checking for C compiler default output file name... rm: a.out.dSYM: is a directory | |
a.out | |
checking whether the C compiler works... yes | |
checking whether we are cross compiling... no |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Andrew-Grimms-MacBook-Pro:ruby-head agrimm$ ./configure | |
checking build system type... x86_64-apple-darwin10.8.0 | |
checking host system type... x86_64-apple-darwin10.8.0 | |
checking target system type... x86_64-apple-darwin10.8.0 | |
checking for gcc... gcc | |
checking for C compiler default output file name... rm: a.out.dSYM: is a directory | |
a.out | |
checking whether the C compiler works... yes | |
checking whether we are cross compiling... no | |
checking for suffix of executables... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FIRSTMAKEFILE="" | |
LIBRUBY_A='lib$(RUBY_SO_NAME)-static.a' | |
LIBRUBY='$(LIBRUBY_A)' | |
LIBRUBYARG_STATIC='-l$(RUBY_SO_NAME)-static' | |
LIBRUBYARG='$(LIBRUBYARG_STATIC)' | |
SOLIBS= | |
case "$target_os" in |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Last login: Sat Nov 26 18:31:49 on ttys008 | |
Andrew-Grimms-MacBook-Pro:~ agrimm$ rvm --version | |
rvm 1.9.2 by Wayne E. Seguin ([email protected]) [https://rvm.beginrescueend.com/] | |
Andrew-Grimms-MacBook-Pro:~ agrimm$ rvm install ruby-head --force-autoconf | |
Installing Ruby from source to: /Users/agrimm/.rvm/rubies/ruby-head, this may take a while depending on your cpu(s)... | |
ruby-head - #fetching | |
HEAD is now at 5606f11 * .travis.yml (before-script): autoconf required. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Andrew-Grimms-MacBook-Pro:~ agrimm$ rvm --version | |
rvm 1.9.2 by Wayne E. Seguin ([email protected]) [https://rvm.beginrescueend.com/] | |
Andrew-Grimms-MacBook-Pro:~ agrimm$ rvm install ruby-head | |
Installing Ruby from source to: /Users/agrimm/.rvm/rubies/ruby-head, this may take a while depending on your cpu(s)... | |
ruby-head - #fetching | |
Cloning from git://github.com/ruby/ruby.git, this may take a while depending on your connection... | |
Initialized empty Git repository in /Users/agrimm/.rvm/repos/ruby/.git/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[2011-11-26 12:20:49] ./configure --prefix=/Users/agrimm/.rvm/rubies/ruby-head --enable-shared --disable-install-doc --with-baseruby=/Users/agrimm/.rvm/wrappers/ruby-1.8.7-head/ruby | |
checking build system type... x86_64-apple-darwin10.8.0 | |
checking host system type... x86_64-apple-darwin10.8.0 | |
checking target system type... x86_64-apple-darwin10.8.0 | |
checking for gcc... gcc | |
checking for C compiler default output file name... a.out | |
checking whether the C compiler works... yes | |
checking whether we are cross compiling... no | |
checking for suffix of executables... | |
checking for suffix of object files... o |