jslint-source 2012.01.13
Sign up to get free protection for your applications and to get access to all the features.
- data/LICENSE +29 -0
- data/lib/jslint/source.rb +16 -0
- data/lib/jslint-source.rb +1 -0
- data/lib/jslint_source.rb +1 -0
- data/vendor/jslint/jslint.js +6884 -0
- metadata +61 -0
data/LICENSE
ADDED
@@ -0,0 +1,29 @@
|
|
1
|
+
jslint.js
|
2
|
+
---------
|
3
|
+
Copyright (c) 2002 Douglas Crockford
|
4
|
+
See vendor/jslint/jslint.js for full licence.
|
5
|
+
|
6
|
+
All other files
|
7
|
+
---------------
|
8
|
+
Copyright (c) 2012, Mint Digital
|
9
|
+
All rights reserved.
|
10
|
+
|
11
|
+
Redistribution and use in source and binary forms, with or without
|
12
|
+
modification, are permitted provided that the following conditions are met:
|
13
|
+
|
14
|
+
1. Redistributions of source code must retain the above copyright notice, this
|
15
|
+
list of conditions and the following disclaimer.
|
16
|
+
2. Redistributions in binary form must reproduce the above copyright notice,
|
17
|
+
this list of conditions and the following disclaimer in the documentation
|
18
|
+
and/or other materials provided with the distribution.
|
19
|
+
|
20
|
+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
21
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
22
|
+
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
|
24
|
+
ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
25
|
+
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
26
|
+
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
27
|
+
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
28
|
+
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
29
|
+
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
@@ -0,0 +1,16 @@
|
|
1
|
+
module JSLint
|
2
|
+
class Source
|
3
|
+
def self.path
|
4
|
+
ENV['JSLINT_PATH'] ||
|
5
|
+
File.expand_path("../../../vendor/jslint/jslint.js", __FILE__)
|
6
|
+
end
|
7
|
+
|
8
|
+
def self.contents
|
9
|
+
@contents ||= File.read(path)
|
10
|
+
end
|
11
|
+
|
12
|
+
def self.version
|
13
|
+
@version ||= contents.split("\n",2)[1]
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'jslint/source'
|
@@ -0,0 +1 @@
|
|
1
|
+
require 'jslint/source'
|