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
| -bash-3.00$ bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer ) | |
| Cloning into rvm... | |
| remote: Counting objects: 5671, done. | |
| remote: Compressing objects: 100% (2729/2729), done. | |
| remote: Total 5671 (delta 3718), reused 4004 (delta 2205) | |
| Receiving objects: 100% (5671/5671), 1.89 MiB | 493 KiB/s, done. | |
| Resolving deltas: 100% (3718/3718), done. | |
| bash: line 329: syntax error near unexpected token `"--trace"' | |
| -bash-3.00$ |
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
| podpilot:twurl-0.6.5 podcapadmin$ ls -la | |
| total 72 | |
| drwxr-xr-x 15 root admin 510 Oct 25 16:50 . | |
| drwxrwxr-x 4 root admin 136 Oct 25 16:50 .. | |
| -rw-rw-r-- 1 root admin 0 Oct 25 16:50 .gemtest | |
| -rw-rw-r-- 1 root admin 371 Oct 25 16:50 .gitignore | |
| -rw-rw-r-- 1 root admin 61 Oct 25 16:50 .travis.yml | |
| -rw-r--r-- 1 root admin 130 Oct 25 16:50 CHANGELOG | |
| -rw-r--r-- 1 root admin 1126 Oct 25 16:50 COPYING | |
| -rw-rw-r-- 1 root admin 95 Oct 25 16:50 Gemfile |
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
| bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer ) |
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
| --- | |
| :benchmark: false | |
| :verbose: true | |
| :update_sources: true | |
| :sources: | |
| - http://gems.rubyforge.org/ | |
| - http://gems.github.com | |
| :backtrace: false | |
| :bulk_threshold: 1000 |
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
| <!-- BEGIN IU SEARCH BOX --> | |
| <form id="iusearch" method="get" action="https://search.sharepoint.iu.edu/sites/demo2/Pages/results.aspx"> | |
| <fieldset id="set1"> | |
| <ul class="unstyled"> | |
| <li><a href="http://people.iu.edu/">People</a></li> | |
| <li><label for="k">IU Search:</label></li> | |
| </ul> | |
| </fieldset> | |
| <fieldset id="set2"> |
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
| <!-- BEGIN BASIC IU SEARCH BOX WITH CAMPUS SCOPE OPTION --> | |
| <form id="iusearch" method="get" action="https://search.sharepoint.iu.edu/sites/demo2/Pages/results.aspx"> | |
| <fieldset id="set1"> | |
| <ul class="unstyled"> | |
| <li><a href="http://people.iu.edu/">People</a></li> | |
| <li> | |
| <!-- Input to customize for narrowing search scope --> | |
| <input type="radio" name="s" id="search1" value="indiana" /> | |
| <label for="search1">Indiana</label> | |
| </li> |
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
| gem is a function | |
| gem () | |
| { | |
| typeset result; | |
| ( typeset rvmrc; | |
| for rvmrc in /etc/rvmrc "${HOME:-}/.rvmrc"; | |
| do | |
| [[ -s "${rvmrc}" ]] && source "${rvmrc}" || true; | |
| done; | |
| command gem "$@" ) || result=$?; |
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
| /Users/davpoind/.rvm/gems/ruby-1.9.3-p125@goiu_shorten/bin:/Users/davpoind/.rvm/gems/ruby-1.9.3-p125@global/bin:/Users/davpoind/.rvm/rubies/ruby-1.9.3-p125/bin:/Users/davpoind/.rvm/bin:/usr/local:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/git/bin:/Users/davpoind/bin:/usr/local/git/libexec/git-core |
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
| RubyGems Environment: | |
| - RUBYGEMS VERSION: 1.8.19 | |
| - RUBY VERSION: 1.9.3 (2012-02-16 patchlevel 125) [x86_64-darwin11.3.0] | |
| - INSTALLATION DIRECTORY: /Users/davpoind/.rvm/gems/ruby-1.9.3-p125@goiu_shorten | |
| - RUBY EXECUTABLE: /Users/davpoind/.rvm/rubies/ruby-1.9.3-p125/bin/ruby | |
| - EXECUTABLE DIRECTORY: /Users/davpoind/.rvm/gems/ruby-1.9.3-p125@goiu_shorten/bin | |
| - RUBYGEMS PLATFORMS: | |
| - ruby | |
| - x86_64-darwin-11 | |
| - GEM PATHS: |
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
| rvm current | ruby -e 'rvm=STDIN.readlines.to_s.split("-");rvm_v=rvm[2];r=rvm[1];v=rvm[2].split("@")[0];puts r+"-"+v' |