Sha256: 6ac19defc93ae83101657f50b17f7970bf42412fea7716d8379af9298f5fd25f

Contents?: true

Size: 491 Bytes

Versions: 2

Compression:

Stored size: 491 Bytes

Contents

#! /bin/bash

# Update git submodules
git submodule init
git submodule update

# If already in a VIRTUAL_ENV assume the person knows what they are doing,
# otherwise set up a python virtualenv with all the needed requirements.
if [ x$VIRTUAL_ENV == x"" ]; then
  cd tools/python
  source setup.sh
  cd ../..
fi

# Comment out the (function() {} ) wrapper
sed -e'17s-^-//-' -e'$s-^-//-' web-animations.js > web-animations-4lint.js

gjslint --summary --nojsdoc web-animations-4lint.js
exit $?

Version data entries

2 entries across 2 versions & 2 rubygems

Version Path
polymer-paper-rails-0.2.0 app/assets/components/web-animations-js/run-lint.sh
polymer-core-rails-0.2.0 app/assets/components/web-animations-js/run-lint.sh