Sha256: 8e2e310c903cc9add88574db31770bc11c3976e3967ec8c9da3a3f6e51c432e4
Contents?: true
Size: 594 Bytes
Versions: 8
Compression:
Stored size: 594 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/dist/js/standalone/selectize.js vendor/assets/javascripts/selectize.js echo "Copying css files" cp tmp_vendor/dist/css/*.css vendor/assets/stylesheets/ # 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
8 entries across 8 versions & 1 rubygems