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
├── Capfile | |
├── Gemfile | |
├── Gemfile.lock | |
├── README | |
├── Rakefile | |
├── app | |
├── bin | |
├── config | |
│ ├── deploy | |
│ │ ├── demo.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
jk@linux ~ $ which ruby | |
/usr/local/rvm/rubies/ruby-1.9.2-p180/bin/ruby | |
jk@linux ~ $ time ruby -e "count = 0; while(count < 100000000); count = count + 1; end; puts count" | |
100000000 | |
real 0m3.922s | |
user 0m3.908s | |
sys 0m0.020s |
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
jk@linux /opt/ruby192 $ time bin/ruby -e "count = 0; while(count < 100000000); count = count + 1; end; puts count" | |
100000000 | |
real 0m3.839s | |
user 0m3.816s | |
sys 0m0.028s |
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
jk@linux ~ $ which ruby | |
/usr/local/rvm/rubies/ruby-1.9.2-p180/bin/ruby | |
jk@linux ~ $ time ruby -e "count = 0; while(count < 100000000); count = count + 1; end; puts count" | |
100000000 | |
real 0m9.019s | |
user 0m8.933s | |
sys 0m0.016s | |
solaris [~]# which ruby |
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
jk@linux ~ $ time perl -e '$count = 0; while ($count < 10000000) { $count ++; } print $count;' | |
10000000 | |
real 0m0.856s | |
user 0m0.840s | |
sys 0m0.008s | |
solaris [~]# time perl -e '$count = 0; while ($count < 10000000) { $count ++; } print $count;' | |
10000000 | |
real 0m1.052s | |
user 0m1.035s |
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
jk@linux ~ $ time perl -e '$count = 0; while ($count < 10000000) { $count ++; } print $count;' | |
10000000 | |
real 0m0.856s | |
user 0m0.840s | |
sys 0m0.008s | |
solaris [~]# time perl -e '$count = 0; while ($count < 10000000) { $count ++; } print $count;' | |
10000000 | |
real 0m1.052s | |
user 0m1.035s |
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
admin@ubuntu:~/rvmtesting$ tf --text ~/rvm/rvm-test/fast/do_comment_test.sh | |
##### starting test do. | |
$ source "$rvm_path/scripts/rvm" | |
$ rvm use 1.8.7 --install | |
Using /home/admin/rvmtesting/gems/ruby-1.8.7-p370 | |
Running /home/admin/rvmtesting/hooks/after_use | |
# passed: status = 0 | |
$ rvm gemset create test1 | |
'test1' gemset created (/home/admin/rvmtesting/gems/ruby-1.8.7-p370@test1). | |
# passed: status = 0 |
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
jk@gerty ~/rvmtesting $ tf --text ~/git/rvm-test/fast/do_comment_test.sh | |
##### starting test do. | |
$ source "$rvm_path/scripts/rvm" | |
$ rvm use 1.8.7 --install | |
Using /Users/jk/rvmtesting/gems/ruby-1.8.7-p370 | |
Running /Users/jk/rvmtesting/hooks/after_use | |
# passed: status = 0 | |
$ rvm gemset create test1 | |
'test1' gemset created (/Users/jk/rvmtesting/gems/ruby-1.8.7-p370@test1). | |
# passed: status = 0 |
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
vagrant@vdevcentos ~/rvmtesting $ tf --text ~/rvm/rvm-test/fast/do_comment_test.sh | |
##### starting test do. | |
$ source "$rvm_path/scripts/rvm" | |
$ rvm use 1.8.7 --install | |
Using /home/vagrant/rvmtesting/gems/ruby-1.8.7-p370 | |
Running /home/vagrant/rvmtesting/hooks/after_use | |
# passed: status = 0 | |
$ rvm gemset create test1 | |
'test1' gemset created (/home/vagrant/rvmtesting/gems/ruby-1.8.7-p370@test1). |
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
jk@gerty ~/rvmtesting $ tf --text ~/git/rvm-test/fast/do_comment_test.sh | |
##### starting test do. | |
$ source "$rvm_path/scripts/rvm" | |
$ rvm use 1.8.7 --install | |
Using /Users/jk/rvmtesting/gems/ruby-1.8.7-p370 | |
Running /Users/jk/rvmtesting/hooks/after_use | |
# passed: status = 0 | |
$ rvm gemset create test1 | |
'test1' gemset created (/Users/jk/rvmtesting/gems/ruby-1.8.7-p370@test1). | |
# passed: status = 0 |