Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/fastruby/setup
Setup a new development environment for Ruby
https://github.com/fastruby/setup
bash-script homebrew ruby-script setup-script
Last synced: about 1 month ago
JSON representation
Setup a new development environment for Ruby
- Host: GitHub
- URL: https://github.com/fastruby/setup
- Owner: fastruby
- Created: 2014-08-10T22:23:37.000Z (over 10 years ago)
- Default Branch: main
- Last Pushed: 2024-11-07T19:18:51.000Z (about 2 months ago)
- Last Synced: 2024-11-07T20:26:09.239Z (about 2 months ago)
- Topics: bash-script, homebrew, ruby-script, setup-script
- Language: Shell
- Homepage: http://www.ombulabs.com
- Size: 27.3 KB
- Stars: 11
- Watchers: 16
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Setup
Script to install base environment for Ruby development.
## Install on Mac OS X
```
curl -L https://raw.githubusercontent.com/ombulabs/setup/master/mac.sh | bash
```## Installed libraries
The script will install:
* homebrew
* imagemagick
* oh-my-zsh
* mysql
* postgres
* redis
* rvm
* ruby-2.6.6
* docker
* docker-compose
* nvm
* chromedriver
* github desktop
* heroku-toolbelt
* spotify
* slack
* firefox
* atom# FAQ
## I get a permissions error. Why?
You may need to update your local libraries directory.
```
sudo chown -R $(whoami):admin /Library/Caches/Homebrew
sudo chown -R $(whoami):admin /opt/homebrew-cask/
sudo chown -R $(whoami):admin /usr/local/
```## I get failure errors. Why?
You have to install Xcode developer tools
```
xcode-select --install
```## But I don't want \ installed.
Just remove \ from https://github.com/ombulabs/setup/blob/master/mac.sh
## Contributions
Please fork this repository and send a pull request with the changes. Thanks!