Install software-properties-common
sudo apt-get install software-properties-common
Add Repo
sudo add-apt-repository ppa:olipo186/git-auto-deploy
| #!/bin/bash | |
| INSTALL_DIR=/opt/postman | |
| if [ "$(whoami)" != "root" ] | |
| then | |
| echo "Sorry, you are not root. Use sudo!" | |
| exit 1 | |
| fi |
Install software-properties-common
sudo apt-get install software-properties-common
Add Repo
sudo add-apt-repository ppa:olipo186/git-auto-deploy
#Mac OS X
| # autoload concerns | |
| module YourApp | |
| class Application < Rails::Application | |
| config.autoload_paths += %W( | |
| #{config.root}/app/controllers/concerns | |
| #{config.root}/app/models/concerns | |
| ) | |
| end | |
| end |