ruby
rbenv
command
brew install ruby-build
brew install rbenv
rbenv install 1.9.3-p484
rbenv install 2.0.0-p353
gem install capistrano --version "<3.0.0"
Java
Java installs Oracle 1.7. It seems that Mavericks will automatically set the path if you install it. After installation, add the export of JAVA_HOME to .bashrc and it's OK.
http://www.oracle.com/technetwork/jp/java/javase/downloads/index.html
Insert GVM to use Gradle. Groovy is also useful for small scripts, so version control is now possible.
command
curl -s get.gvmtool.net | bash
gvm install groovy
gvm install gradle
Scala
Install scala and sbt with brew.
command
brew install scala
brew install sbt
Python
command
brew install python
Play Framework
Put it in lib of your home folder and create a symbolic link with bin / play.
command
mkdir ~/lib
cd lib
brew install wget
wget http://downloads.typesafe.com/play/2.2.1/play-2.2.1.zip
unzip play-2.2.1.zip
vim
Add neobundle to make plugin management easier. By the way, only vimproc that can be processed asynchronously is included.
command
mkdir -p ~/.vim/bundle
git clone https://github.com/Shougo/neobundle.vim ~/.vim/bundle/neobundle.vim
git clone https://github.com/Shougo/vimproc ~/.vim/bundle/vimproc
eclipse
--Insert vrapper
PHP
Put composer as official.
command
curl -sS https://getcomposer.org/installer | php
sudo mv composer.phar /usr/local/bin/composer
MySQL, MongoDB, memcached, Nginx
Don't put it in the package, put it in brew
command
brew install mysql
brew install MongoDB
brew install memcached
brew install nginx
Recommended Posts