From 0fa55312866b7d161a79e5d68413a86a379dbc6c Mon Sep 17 00:00:00 2001 From: yalh76 Date: Sat, 5 Nov 2022 16:17:16 +0100 Subject: [PATCH] Fix 0.27.0 --- scripts/_common.sh | 4 ++-- scripts/install | 4 ++-- scripts/restore | 4 ++-- scripts/upgrade | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/_common.sh b/scripts/_common.sh index 11d05e3..e14d61d 100644 --- a/scripts/_common.sh +++ b/scripts/_common.sh @@ -4,10 +4,10 @@ # COMMON VARIABLES #================================================= -ruby_version=2.7.4 +ruby_version=3.0.2 nodejs_version=16 bundler_version=2.2.19 -rails_version=6.0.4 +rails_version=6.1 # dependencies used by the app (must be on a single line) pkg_dependencies="postgresql imagemagick redis-server" diff --git a/scripts/install b/scripts/install index e237bff..56ebf66 100755 --- a/scripts/install +++ b/scripts/install @@ -127,8 +127,8 @@ ynh_script_progression --message="Installing gems..." --weight=1 pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) ynh_exec_warn_less decidim live popd diff --git a/scripts/restore b/scripts/restore index 7280c16..71d2cb2 100755 --- a/scripts/restore +++ b/scripts/restore @@ -117,8 +117,8 @@ ynh_script_progression --message="Installing gems..." --weight=1 pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) popd diff --git a/scripts/upgrade b/scripts/upgrade index 7fb59a1..bd414ca 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -118,8 +118,8 @@ then pushd $final_path ynh_use_ruby ynh_use_nodejs - ynh_exec_warn_less $ynh_gem install bundler --version $bundler_version - ynh_exec_warn_less $ynh_gem install rails --version $rails_version + ynh_exec_warn_less $ynh_gem install bundler + #ynh_exec_warn_less $ynh_gem install rails --version $rails_version ynh_exec_warn_less $ynh_gem install decidim -v $(ynh_app_upstream_version) popd fi