From 98530e7e06c14e976cc2f6ce6bfd6dacbc49083b Mon Sep 17 00:00:00 2001 From: keeganjk Date: Sat, 5 May 2018 13:37:18 -0400 Subject: [PATCH] Added ruby and ruby-rdoc to Arch installer Added ruby and ruby-rdoc to Arch installer in case rdoc isn't installed --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index c7abfb588..3af4f4c94 100755 --- a/install +++ b/install @@ -106,7 +106,7 @@ install_linux () { sudo yum install -y git make gcc openssl-devel gcc-c++ patch readline readline-devel zlib zlib-devel libyaml-devel libffi-devel bzip2 autoconf automake libtool bison sqlite-devel nodejs elif [ "${Distro}" = "Arch" ]; then sudo pacman -Syu # Updates repo, dependencies, etc. - sudo pacman -S curl git make openssl gcc readline zlib libyaml sqlite bzip2 autoconf automake libtool bison nodejs # Installs dependencies + sudo pacman -S curl git make openssl gcc readline zlib libyaml sqlite bzip2 autoconf automake libtool bison nodejs ruby ruby-rdoc # Installs dependencies fi }