Skip to content

Instantly share code, notes, and snippets.

@mauromorales
Last active December 17, 2015 12:48
Show Gist options
  • Save mauromorales/5612026 to your computer and use it in GitHub Desktop.
Save mauromorales/5612026 to your computer and use it in GitHub Desktop.
set up necessary before using https://github.com/LAS-IT/image-testing
# install the command line tools
# http://connect.apple.com
# if this doesn't work, install them from inside Xcode
# install homebrew
ruby -e "$(curl -fsSL https://raw.github.com/mxcl/homebrew/go)"
brew doctor
# install git
brew install git
# install rbenv
brew install rbenv
echo 'eval "$(rbenv init -)"' >> ~/.bash_profile
# install ruby builder
brew install ruby-build
# install latests ruby
rbenv install 2.0.0-p0
rbenv shell 2.0.0-p0
# install bundler
gem install bundler
# Enable and disable Assistive Devices via Terminal
sudo touch /private/var/db/.AccessibilityAPIEnabled
# install the image testing code
git clone https://github.com/LAS-IT/image-testing
# install gem dependancies
bundle
# run the tests
cucumber
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment