js-preflight 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/.gitignore ADDED
@@ -0,0 +1,3 @@
1
+ pkg/*
2
+ *.gem
3
+ .bundle
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in js-preflight.gemspec
4
+ gemspec
data/README.md ADDED
@@ -0,0 +1,14 @@
1
+ js-preflight
2
+ ============
3
+ Run jslint and jsmin on all .js files sourced in html files provided as arguments.
4
+ for details:
5
+ preflight --help
6
+
7
+ Bugs
8
+ ----
9
+ Output isn't perfect yet; you'll need to move the packed .js file yourself for now
10
+
11
+ Acknowledgements
12
+ ----------------
13
+ jsmin and jslint by the excellent Doug Crockford.
14
+ Executable jslint provided by Andy Walker, see http://whereisandy.com/code/jslint/
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require 'bundler'
2
+ Bundler::GemHelper.install_tasks