Sha256: 6b317be4cf2b9012ad1024aa7077d5dae0ec63d2c25d08c1ae00082f248c0a77
Contents?: true
Size: 577 Bytes
Versions: 8
Compression:
Stored size: 577 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