警告: 請絕對不要跳著裝!
- Software Update
- Install Xcode ( Mac OS X Install CD 那一塊的 >> 選擇安裝)
- Install Homebrew http://github.com/mxcl/homebrew
| alias :pputs :puts | |
| def puts(str = "") | |
| pputs(str) | |
| $out << "#{str}" | |
| end | |
| STDOUT.instance_eval do | |
| alias :pputs :puts | |
| def puts(str = "") | |
| pputs(str) |
警告: 請絕對不要跳著裝!
| def tip(msg); puts; puts msg; puts "-"*100; end | |
| # | |
| # 30 Ruby 1.9 Tips, Tricks & Features: | |
| # http://www.igvita.com/2011/02/03/new-ruby-19-features-tips-tricks/ | |
| # | |
| tip "Upgrading to Ruby 1.9 is simple: rvm install 1.9.2 && rvm --default 1.9.2" | |
| tip "Ruby 1.9 supports named captures in regular expressions!" |