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
| #Update all apps for Sierra | |
| brew upgrade | |
| brew update | |
| #Link updates | |
| brew linkapps macvim | |
| #Restart Services | |
| brew services restart redis |
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
| te |
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
| echo 'Updating RVM' | |
| rvm get stable | |
| rvm cleanup all | |
| echo "Installing Ruby version $RUBY_VERSION" | |
| RUBY_VERSION=2.1.4 | |
| rvm install $RUBY_VERSION --disable-binary | |
| rvm --default use $RUBY_VERSION | |
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
| echo 'Updating xcode command line tools' | |
| xcode-select --install | |
| echo 'Updating Homebrew' | |
| brew uninstall postgresql | |
| brew uninstall postgresql91 | |
| brew uninstall postgis | |
| brew uninstall proj | |
| brew uninstall geos | |
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
| echo 'Updating RVM' | |
| rvm get stable | |
| rvm cleanup all | |
| echo "Installing Ruby version $RUBY_VERSION" | |
| RUBY_VERSION=2.1.2 | |
| rvm uninstall $RUBY_VERSION | |
| rvm install $RUBY_VERSION | |
| rvm --default use $RUBY_VERSION | |
| gem install bundler |
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
| require 'formula' | |
| def raster? | |
| ARGV.include? '--with-raster' | |
| end | |
| def topology? | |
| ARGV.include? '--with-topology' | |
| end |
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
| echo 'Please Accept Xcode License' | |
| xcode-select --install | |
| echo 'Updating Homebrew' | |
| brew uninstall postgresql | |
| brew uninstall postgresql91 | |
| brew uninstall postgis | |
| brew uninstall proj | |
| brew uninstall geos |
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
| echo 'Updating RVM' | |
| rvm get stable | |
| rvm cleanup all | |
| echo "Installing Ruby version $RUBY_VERSION" | |
| RUBY_VERSION=2.1.2 | |
| rvm install $RUBY_VERSION | |
| rvm reload | |
| rvm --default use $RUBY_VERSION | |
| rvm reload |