Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
admin
/
scripts
/
builder
/
ruby
/
/srv/admin/scripts/builder/ruby/install.sh
#!/bin/bash -e PATH="${PATH}:/opt/ruby-${WWW_VERSION}/usr/bin" export CONFIGURE_ARGS="--with-ldflags=\"-Wl,-rpath,/opt/ruby-${WWW_VERSION}/usr/lib -Wl,-rpath,/opt/sqlite-3/lib\"" if [ -f Gemfile.lock ]; then bundle install --deployment --without development test else if [ -f Gemfile ]; then echo WARNING: your project contains a Gemfile but no Gemfile.lock was \ found, dependencies could not be installed. echo Please see the documentation: echo echo '[fr] https://docs.gandi.net/fr/simple_hosting/langages/ruby.html' echo '[en] https://docs.gandi.net/en/simple_hosting/instance_languages/ruby.html' fi fi