lib/codelation/development.rb in codelation-cli-0.0.2 vs lib/codelation/development.rb in codelation-cli-0.0.3

- old
+ new

@@ -2,28 +2,28 @@ module Codelation class Cli < Thor desc "development:install", "Install the development tools used by Codelation" def development_install - # print_heading("Installing Atom.app") - # install_atom - # - # print_heading("Installing Atom Packages") - # install_atom_packages - # - # print_heading("Installing Dot Files") - # install_dot_files - # - # print_heading("Installing Postgres.app") - # install_postgres + print_heading("Installing Atom.app") + install_atom + print_heading("Installing Atom Packages") + install_atom_packages + + print_heading("Installing Dot Files") + install_dot_files + + print_heading("Installing Postgres.app") + install_postgres + print_heading("Installing Ruby") install_ruby - # print_heading("Installing Sequel Pro.app") - # install_sequel_pro - # - # print_heading("Installing Codelation CLI to PATH") - # install_codelation_cli + print_heading("Installing Sequel Pro.app") + install_sequel_pro + + print_heading("Installing Codelation CLI to PATH") + install_codelation_cli end end end