Sha256: f9dd53c65d034f8c2473be344bc126687763dc2c724d057feba911ed80dac785
Contents?: true
Size: 625 Bytes
Versions: 1
Compression:
Stored size: 625 Bytes
Contents
require "thor" module Codelation class Cli < Thor private # Install dependencies for building and installing everything else. def install_dependencies print_command("Installing Homebrew from http://brew.sh") `ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"` run_command("brew install bash") run_command("brew install git") run_command("brew install imagemagick") run_command("brew install make") run_command("brew install openssl") run_command("brew install v8") run_command("brew install wget") end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
codelation-cli-0.0.8 | lib/codelation/development/dependencies.rb |