Sha256: e3f9a73ecabd439a418e2405110f6f5174432f3bff42ff70013d9d42fec2b5ff

Contents?: true

Size: 574 Bytes

Versions: 1

Compression:

Stored size: 574 Bytes

Contents

#!/bin/bash

# Checkout vendor repo
echo "Cloning brianreavis/selectize.js github repo into tmp_vendor"
git clone https://github.com/brianreavis/selectize.js.git tmp_vendor

# Copy files
echo "Copying selectize.js"
cp tmp_vendor/selectize.js vendor/assets/javascripts/selectize.js
echo "Copying selectize.css"
cp tmp_vendor/selectize.css vendor/assets/stylesheets/selectize.css

# Delete vendor repo
echo "Removing cloned vendor repo"
rm -rf tmp_vendor

echo "Finished... You'll need to commit the changes. You should consider updating the changelog and gem version number"

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
selectize-rails-0.6.4 update_from_vendor.sh