-
Notifications
You must be signed in to change notification settings - Fork 9
Environment setup
alexjo edited this page Aug 8, 2014
·
20 revisions
Having installed ruby you may find that you need to install a few basic programs to get off the ground.
gem install bundler
gem install calabash-android
####Optional
On OS-X gems will default to being saved in root owned location. It is possible to create a custom gem location and point ruby gems to use that.
mkdir -p ~/.gems
export GEM_HOME="$HOME/.gems"
export GEM_PATH="$GEM_HOME:/var/lib/ruby/gems/1.8"
Run the following shell commands to get the basic setup required
ruby -e "$(curl -fsSL https://raw.github.com/Homebrew/homebrew/go/install)"
brew doctor
brew install android-sdk
####Optional
brew install rbenv rbenv-gem-rehash ruby-build
rbenv install 2.1.2
rbenv global 2.1.2
rbenv rehash
It is important to make sure that before installing and AVD's you have the intel system image.
Also install HAXM support.
It is important to enable the host GPU and prefer an Intel processor. In addition to this you may want to generate some SD card space to enable download of books in app.


