Created
June 4, 2010 15:41
-
-
Save dce/425567 to your computer and use it in GitHub Desktop.
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
~/Projects/project[master] > rvm default | |
~/Projects/project[master] > which ruby | |
/Users/dce/.rvm/rubies/ruby-1.8.7-p249/bin/ruby | |
~/Projects/project[master] > sc | |
Loading development environment (Rails 2.3.8) | |
ruby-1.8.7-p249 > BigDecimal("9.05").to_f | |
=> 9.05 | |
ruby-1.8.7-p249 > exit | |
~/Projects/project[master] > rvm system | |
~/Projects/project[master] > which ruby | |
/usr/bin/ruby | |
~/Projects/project[master] > sc | |
Loading development environment (Rails 2.3.8) | |
>> BigDecimal("9.05").to_f | |
=> 9.5 | |
>> WTF WHY | |
NameError: uninitialized constant WHY | |
from /Users/dce/Projects/project/vendor/bundler_gems/ruby/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:443:in `load_missing_constant' | |
from /Users/dce/Projects/project/vendor/bundler_gems/ruby/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:80:in `const_missing' | |
from /Users/dce/Projects/project/vendor/bundler_gems/ruby/1.8/gems/activesupport-2.3.8/lib/active_support/dependencies.rb:92:in `const_missing' | |
from (irb):1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment