1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mastodon_ynh.git synced 2024-09-03 19:46:02 +02:00

BUNDLER_VERSION factorization

This commit is contained in:
yalh76 2020-05-19 01:24:16 +02:00
parent 736d7908b4
commit b5556ae674
4 changed files with 5 additions and 3 deletions

View file

@ -9,6 +9,8 @@ pkg_dependencies="imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git
RUBY_VERSION="2.6.5"
BUNDLER_VERSION="1.17.3"
#=================================================
# PERSONAL HELPERS
#=================================================

View file

@ -157,7 +157,7 @@ ynh_script_progression --message="Installing Ruby..." --weight=424
ynh_install_ruby --ruby_version=$RUBY_VERSION
pushd "$final_path/live"
gem update --system
gem install bundler:1.17.3 --no-document
gem install bundler:$BUNDLER_VERSION --no-document
popd
#=================================================

View file

@ -117,7 +117,7 @@ ynh_script_progression --message="Installing Ruby..." --weight=393
ynh_install_ruby --ruby_version=$RUBY_VERSION
pushd "$final_path/live"
gem update --system
gem install bundler:1.17.3 --no-document
gem install bundler:$BUNDLER_VERSION --no-document
popd
#=================================================

View file

@ -252,7 +252,7 @@ ynh_script_progression --message="Installing Ruby..." --weight=424
ynh_install_ruby --ruby_version=$RUBY_VERSION
pushd "$final_path/live"
gem update --system
gem install bundler:1.17.3 --no-document
gem install bundler:$BUNDLER_VERSION --no-document
popd
#=================================================