Sha256: 73070fbb122f7af370f0c2cf42b9cf431b6874dc112f0d1eb407b80eb3576706

Contents?: true

Size: 504 Bytes

Versions: 4

Compression:

Stored size: 504 Bytes

Contents

#! /bin/bash

set -e

FIXTURE_PATH="spec/fixtures/wordless"
WORDLESS_ARCHIVE="https://github.com/welaika/wordless/archive/master.tar.gz"
WORDLESS_PREFERENCES="wordless/theme_builder/vanilla_theme/config/initializers/wordless_preferences.php"

function log {
  echo;
  echo "== [ $1 ] ==";
}

log "Deleting {$FIXTURE_PATH}..."
rm -rf $FIXTURE_PATH
mkdir -p $FIXTURE_PATH
echo "Done!"

log "Downloading wordless from github..."
cd $FIXTURE_PATH
wget $WORDLESS_ARCHIVE -O - | tar -xz --strip 1
echo "Done!"

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
wordless-2.2.0 bin/setup.sh
wordless-2.1.1 bin/setup.sh
wordless-2.1.0 bin/setup.sh
wordless-2.0.0 bin/setup.sh