Sha256: fd23b0a6c446de46dd2de1d4056acd465b0d7d9b965d60303308e2d6f55a1848
Contents?: true
Size: 768 Bytes
Versions: 7
Compression:
Stored size: 768 Bytes
Contents
#!/bin/sh # Checkout vendor repo echo "Cloning nostalgiaz/bootstrap-switch github repo into tmp_vendor" git clone https://github.com/nostalgiaz/bootstrap-switch.git tmp_vendor # Copy files echo "Copying bootstrap-switch.js" cp tmp_vendor/dist/js/bootstrap-switch.js vendor/assets/javascripts/bootstrap-switch.js echo "Copying bootstrap-switch.css files" cp tmp_vendor/dist/css/bootstrap2/bootstrap-switch.css vendor/assets/stylesheets/bootstrap2-switch.css.scss cp tmp_vendor/dist/css/bootstrap3/bootstrap-switch.css vendor/assets/stylesheets/bootstrap3-switch.css.scss # 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
7 entries across 7 versions & 1 rubygems