Sha256: 192d05ef068275092f9834c5ca58655732ee20bde12a6fba6b1d65dacd9d7320
Contents?: true
Size: 434 Bytes
Versions: 35
Compression:
Stored size: 434 Bytes
Contents
#!/bin/sh # Scriptacular - gemify.sh # Create a Ruby gem and push it to rubygems.org # Copyright 2013 Christopher Simpkins # MIT License GEM_NAME="osso-rb" GEMSPEC_SUFFIX=".gemspec" # run the gem build and parse for the gem release filename GEM_BUILD_NAME=$(gem build "$GEM_NAME$GEMSPEC_SUFFIX" | awk '/File/ {print $2}' -) if [ -z "$GEM_BUILD_NAME" ]; then echo "The gem build failed." >&2 exit 1 fi gem push $GEM_BUILD_NAME
Version data entries
35 entries across 35 versions & 1 rubygems