Sha256: a882348c17b9ca7c4cb17c4800bdcc9081a2a8807a47bff26646d4b76b85ff1f
Contents?: true
Size: 583 Bytes
Versions: 1
Compression:
Stored size: 583 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/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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
selectize-rails-0.7.0 | update_from_vendor.sh |