Skip to content

Instantly share code, notes, and snippets.

@macarthy
Created February 8, 2011 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save macarthy/816278 to your computer and use it in GitHub Desktop.
Save macarthy/816278 to your computer and use it in GitHub Desktop.
~/projects/git/manFS > rvm info
ruby-1.8.7-p249@manfs:
system:
uname: "Darwin boole.local 10.6.0 Darwin Kernel Version 10.6.0: Wed Nov 10 18:13:17 PST 2010; root:xnu-1504.9.26~3/RELEASE_I386 i386"
bash: "/bin/bash => GNU bash, version 3.2.48(1)-release (x86_64-apple-darwin10.0)"
zsh: "/bin/zsh => zsh 4.3.9 (i386-apple-darwin10.0)"
rvm:
version: "rvm 1.1.0 by Wayne E. Seguin (wayneeseguin@gmail.com) [http://rvm.beginrescueend.com/]"
ruby:
interpreter: "ruby"
version: "1.8.7"
date: "2010-01-10"
platform: "i686-darwin10.3.0"
patchlevel: "2010-01-10 patchlevel 249"
full_version: "ruby 1.8.7 (2010-01-10 patchlevel 249) [i686-darwin10.3.0]"
homes:
gem: "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@manfs"
ruby: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249"
binaries:
ruby: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/bin/ruby"
irb: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/bin/irb"
gem: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/bin/gem"
rake: "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/bin/rake"
environment:
PATH: "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@manfs/bin:/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/bin:/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/bin:/Users/macarthy/.rvm/bin:/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@std/bin:/Users/macarthy/bin:/usr/local/mysql/bin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/local/git/bin:/usr/local/mongodb/bin:~/bin:/usr/local/ncbi/blast/bin:/usr/X11/bin"
GEM_HOME: "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@manfs"
GEM_PATH: "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@manfs:/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global"
MY_RUBY_HOME: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249"
IRBRC: "/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/.irbrc"
RUBYOPT: ""
gemset: "manfs"
1 require "minitest/autorun"
2
3 class TestManFS < MiniTest::Unit::TestCase
4
5 def test_sanity
6 flunk
7 end
8
9 end
10
~/projects/git/manFS > rake
(in /Users/macarthy/projects/git/manFS)
/Users/macarthy/.rvm/rubies/ruby-1.8.7-p249/bin/ruby -I"lib:test" "/Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/gems/rake-0.8.7/lib/rake/rake_test_loader.rb" "test/test_manfs.rb"
./test/test_manfs.rb:1:in `require': no such file to load -- minitest/autorun (LoadError)
from ./test/test_manfs.rb:1
from /Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `load'
from /Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
from /Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5:in `each'
from /Users/macarthy/.rvm/gems/ruby-1.8.7-p249@global/gems/rake-0.8.7/lib/rake/rake_test_loader.rb:5
rake aborted!
Command failed with status (1): [/Users/macarthy/.rvm/rubies/ruby-1.8.7-p24...]
(See full trace by running task with --trace)
/projects/git/manFS > irb
ruby-1.8.7-p249 > require 'minitest/autorun'
=> true
ruby-1.8.7-p249 >
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment