Skip to content

Setup development environment

Zhang Kai Yu edited this page Mar 26, 2015 · 5 revisions
  • Make sure you have ruby >= 2.1 installed.
if which ruby; then
  echo "Ruby found"
else
  echo "Ruby not found"
fi

Ruby official installing instruction is here.

  • Make sure you have Xcode and Xcode command line tool installed. You may download it from Mac App Store. Open Xcode -> Preferences -> Use command line tool.

  • Make sure you have bundler installed. The installation is rather simple:

gem install bundler

The usage of bundler is here.

  • Checkout this project and bundle install This command will install all the dependency gems.

The web component is written in coffeeScript, usage of coffeeScript is here.

The Apple native component is written in mixed javaScript and Objective-C.

The guide of Objective-C is here

This project uses rake. You may consider it as 'ruby make'. Documentation for rake are here