2017-04-08 04:04:27 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# COMMON VARIABLES
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
# dependencies used by the app
|
2020-03-18 02:26:17 +01:00
|
|
|
pkg_dependencies="imagemagick ffmpeg libpq-dev libxml2-dev libxslt1-dev file git-core g++ libprotobuf-dev protobuf-compiler pkg-config gcc autoconf bison build-essential libssl-dev libyaml-dev libreadline6-dev zlib1g-dev libncurses5-dev libffi-dev libgdbm3|libgdbm6 libgdbm-dev redis-server redis-tools postgresql postgresql-contrib libidn11-dev libicu-dev libjemalloc-dev curl apt-transport-https"
|
2019-03-18 04:22:38 +01:00
|
|
|
|
2020-05-19 01:20:45 +02:00
|
|
|
RUBY_VERSION="2.6.5"
|
|
|
|
|
2020-05-19 01:24:16 +02:00
|
|
|
BUNDLER_VERSION="1.17.3"
|
|
|
|
|
2019-03-18 04:22:38 +01:00
|
|
|
#=================================================
|
|
|
|
# PERSONAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# EXPERIMENTAL HELPERS
|
|
|
|
#=================================================
|
|
|
|
|
|
|
|
#=================================================
|
|
|
|
# FUTURE OFFICIAL HELPERS
|
|
|
|
#=================================================
|