Module: WPMake::TextHelpers

Included in:
Bootstrap
Defined in:
lib/wpmake/text_helpers.rb

Constant Summary collapse

RUBY_INSTALL_MSG =
"\nTo install:
\n1) brew install curl
\n2) bash < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer)
\n3) add this to the BOTTOM of your ~/.bashrc (or ~/.zshrc):\n" +
'    [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"' +
      "\n4) . ~/.bashrc
\n5) rvm install 1.9.3 --with-gcc=clang"
MYSQL_INSTALL_MSG =
"\nTo install:
\nbrew update
\nbrew install mysql"
PHP_INSTALL_MSG =
"\nTo install:
\n brew update
\nbrew tap homebrew/dupes
\nbrew tap josegonzalez/homebrew-php
\nbrew install php54
\n*** if you need custom modules or whatever run: brew options php54"
WGET_INSTALL_MSG =
"\nTo install:
\nbrew update
\nbrew install wget"
PAGODA_INSTALL_MSG =
"\nTo install:
\nsudo gem install pagoda"
MYSQL_UPGRADE_MSG =
"\nTo upgrade MySQL:
\nbrew update
\nbrew upgrade mysql OR brew install mysql"
PHP_UPGRADE_MSG =
"\nTo upgrade PHP:
\nbrew update
\nbrew tap homebrew/dupes
\nbrew tap josegonzalez/homebrew-php
\nbrew install php54"