Last active
December 17, 2015 16:39
-
-
Save jakemauer/5640807 to your computer and use it in GitHub Desktop.
Output of installing ruby 1.9.3-p429, my .zshrc, and currently installed brews
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
| # Path to your oh-my-zsh configuration. | |
| ZSH=$HOME/.oh-my-zsh | |
| # Set name of the theme to load. | |
| # Look in ~/.oh-my-zsh/themes/ | |
| # Optionally, if you set this to "random", it'll load a random theme each | |
| # time that oh-my-zsh is loaded. | |
| ZSH_THEME="j2fly" | |
| # Example aliases | |
| alias zshconfig="sub ~/.zshrc" | |
| alias sa="cd ~/Dropbox/rails_projects/sample_app" | |
| alias ohmyzsh="sub ~/.oh-my-zsh" | |
| ls() { if [[ $@ == "-la" ]]; then command ls -la | more; else command ls "$@"; fi; } | |
| # Set to this to use case-sensitive completion | |
| CASE_SENSITIVE="true" | |
| # Comment this out to disable weekly auto-update checks | |
| DISABLE_AUTO_UPDATE="true" | |
| # Uncomment following line if you want to disable colors in ls | |
| # DISABLE_LS_COLORS="true" | |
| # Uncomment following line if you want to disable autosetting terminal title. | |
| # DISABLE_AUTO_TITLE="true" | |
| # Uncomment following line if you want red dots to be displayed while waiting for completion | |
| COMPLETION_WAITING_DOTS="true" | |
| # Which plugins would you like to load? (plugins can be found in ~/.oh-my-zsh/plugins/*) | |
| # Custom plugins may be added to ~/.oh-my-zsh/custom/plugins/ | |
| # Example format: plugins=(rails git textmate ruby lighthouse) | |
| plugins=(git capistrano jake-shortcuts rails) | |
| source $ZSH/oh-my-zsh.sh | |
| rvm_project_rvmrc=1 | |
| [[ -s $HOME/.rvm/scripts/rvm ]] && source $HOME/.rvm/scripts/rvm | |
| #export SSL_CERT_FILE=/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt | |
| # Customize to your needs... | |
| export GRAILS_HOME=/Users/`whoami`/grails/grails-2.0.4 | |
| export PATH=/usr/local/bin:$PATH | |
| export JAVA_HOME=$(/usr/libexec/java_home) | |
| export PATH=$PATH:$GRAILS_HOME/bin:$JAVA_HOME | |
| export PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/Users/jake/bin | |
| PATH=$PATH:$HOME/.rvm/bin # Add RVM to PATH for scripting | |
| #launchctl setenv PATH /usr/local/bin:$PATH |
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
| brew list ruby-2.0.0-p195 | |
| apple-gcc42 libgpg-error libxml2 openssl postgresql | |
| autoconf libksba libxslt ossp-uuid readline | |
| automake libtool libyaml pkg-config |
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 install 1.9.3 ruby-2.0.0-p195 | |
| Searching for binary rubies, this might take some time. | |
| No binary rubies available for: osx/10.8/x86_64/ruby-1.9.3-p429. | |
| Continuing with compilation. Please read 'rvm mount' to get more information on binary rubies. | |
| Installing requirements for osx, might require sudo password. | |
| Certificates in '/usr/local/etc/openssl/cert.pem' already are up to date. | |
| Installing Ruby from source to: /Users/jake/.rvm/rubies/ruby-1.9.3-p429, this may take a while depending on your cpu(s)... | |
| ruby-1.9.3-p429 - #downloading ruby-1.9.3-p429, this may take a while depending on your connection... | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 9806k 100 9806k 0 0 343k 0 0:00:28 0:00:28 --:--:-- 418k | |
| ruby-1.9.3-p429 - #extracting ruby-1.9.3-p429 to /Users/jake/.rvm/src/ruby-1.9.3-p429 - using ZSH, can not show progress, be patient... | |
| ruby-1.9.3-p429 - #extracted to /Users/jake/.rvm/src/ruby-1.9.3-p429 | |
| ruby-1.9.3-p429 - #configuring - using ZSH, can not show progress, be patient... | |
| ruby-1.9.3-p429 - #compiling - using ZSH, can not show progress, be patient... | |
| ruby-1.9.3-p429 - #installing - using ZSH, can not show progress, be patient... | |
| Retrieving rubygems-1.8.25 | |
| % Total % Received % Xferd Average Speed Time Time Time Current | |
| Dload Upload Total Spent Left Speed | |
| 100 371k 100 371k 0 0 282k 0 0:00:01 0:00:01 --:--:-- 382k | |
| Extracting rubygems-1.8.25 ... | |
| Removing old Rubygems files... | |
| Installing rubygems-1.8.25 for ruby-1.9.3-p429..................... | |
| Installation of rubygems completed successfully. | |
| Saving wrappers to '/Users/jake/.rvm/wrappers/ruby-1.9.3-p429'........ | |
| - using ZSH, can not show progress, be patient... | |
| ruby-1.9.3-p429 - #adjusting #shebangs for (gem irb erb ri rdoc testrb rake). | |
| ruby-1.9.3-p429 - #importing default gemsets, this may take time - using ZSH, can not show progress, be patient... | |
| Install of ruby-1.9.3-p429 - #complete |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment