Sha256: 6e11badb3bd66989663d2347620d6caac4fe8f9b51c79ff09565fe17d6a4caa4

Contents?: true

Size: 360 Bytes

Versions: 22

Compression:

Stored size: 360 Bytes

Contents

#!/bin/bash

full_path=$(realpath "$0")
dir_path=$(dirname "$full_path")

. "$dir_path/sdk_specs.sh"

# shellcheck disable=SC2154
if cd "$dir_path/.." && gem build "$ff_ruby_sdk.gemspec" && gem install "$ff_ruby_sdk"; then

  echo "The '$ff_ruby_sdk' is installed with success"
else

  echo "ERROR: the '$ff_ruby_sdk' is NOT installed with success"
  exit 1
fi

Version data entries

22 entries across 22 versions & 1 rubygems

Version Path
ff-ruby-server-sdk-1.0.2.rc1 scripts/install.sh
ff-ruby-server-sdk-1.0.1 scripts/install.sh