Install ruby gems in install script
Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
parent
90993096e7
commit
c9a7d31cb7
1 changed files with 11 additions and 1 deletions
10
install
10
install
|
@ -27,6 +27,7 @@ HOST="$(hostname)"
|
|||
DIRECTORIES=(
|
||||
".local/log"
|
||||
".local/share/gnupg/"
|
||||
".local/share/vpn/"
|
||||
"build"
|
||||
"documents"
|
||||
"downloads"
|
||||
|
@ -128,6 +129,11 @@ NPM_PACKAGES=(
|
|||
"npm-check-updates"
|
||||
)
|
||||
|
||||
# Ruby gems which should be installed
|
||||
RUBY_GEMS=(
|
||||
"docker-sync"
|
||||
)
|
||||
|
||||
# composer packages which should be installed globally
|
||||
COMPOSER_PACKAGES=(
|
||||
"laravel/installer"
|
||||
|
@ -224,6 +230,10 @@ fi
|
|||
# print_log "Installing ${#COMPOSER_PACKAGES[@]} packages"
|
||||
# composer global require "${COMPOSER_PACKAGES[@]}"
|
||||
|
||||
print_section "Installing ruby gems"
|
||||
print_log "Installing ${#RUBY_GEMS[@]} packages"
|
||||
gem install "${RUBY_GEMS[@]}"
|
||||
|
||||
###############################################################################
|
||||
# Creating directories #
|
||||
###############################################################################
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue