Sha256: 7599e188b69ba3b3a0642f3db65fec0d82e0bd4cbbdacda28e841c31a379553b

Contents?: true

Size: 327 Bytes

Versions: 2

Compression:

Stored size: 327 Bytes

Contents

#!/usr/bin/env bash
# Usage: script/gem
# Updates the gemspec and builds a new gem in the pkg directory.

mkdir -p pkg
gem build *.gemspec

./script/validate || rm *.gem

echo "*** Packing and moving the octopoller gem ***"
if [ -f *.gem ]; then
  mv *.gem pkg
  echo -e '☑ success'
else
  echo -e '☒ failure'
  exit 1
fi

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
octopoller-0.3.1 script/package
octopoller-0.3.0 script/package