distil 0.13.2 → 0.13.3
Sign up to get free protection for your applications and to get access to all the features.
- data/VERSION +1 -1
- data/distil.gemspec +2 -2
- data/lib/distil/project.rb +1 -1
- data/lib/jsl.conf +1 -1
- metadata +4 -4
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.13.
|
1
|
+
0.13.3
|
data/distil.gemspec
CHANGED
@@ -5,11 +5,11 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{distil}
|
8
|
-
s.version = "0.13.
|
8
|
+
s.version = "0.13.3"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Jeff Watkins"]
|
12
|
-
s.date = %q{2010-11-
|
12
|
+
s.date = %q{2010-11-26}
|
13
13
|
s.default_executable = %q{distil}
|
14
14
|
s.description = %q{A build tool for Javascript and CSS that takes advantage of best-of-breed helper applications Javascript Lint and JSDoc Toolkit}
|
15
15
|
s.executables = ["distil"]
|
data/lib/distil/project.rb
CHANGED
@@ -38,7 +38,7 @@ module Distil
|
|
38
38
|
Dir.chdir path do
|
39
39
|
clone_cmd = "git clone #{uri} ."
|
40
40
|
clone_cmd += " -q"
|
41
|
-
clone_cmd += " #{options["version"]}" if options["version"]
|
41
|
+
clone_cmd += " -b #{options["version"]}" if options["version"]
|
42
42
|
if !system(clone_cmd)
|
43
43
|
raise ValidationError.new("Failed to clone external project: #{uri}")
|
44
44
|
end
|
data/lib/jsl.conf
CHANGED
@@ -23,7 +23,7 @@
|
|
23
23
|
+missing_break_for_last_case # missing break statement for last case in switch
|
24
24
|
+comparison_type_conv # comparisons against null, 0, or an empty string allowing implicit type conversion (use === or !==)
|
25
25
|
-inc_dec_within_stmt # increment (++) and decrement (--) operators used as part of greater statement
|
26
|
-
|
26
|
+
-useless_void # use of the void type may be unnecessary (void is always undefined)
|
27
27
|
+multiple_plus_minus # unknown order of operations for successive plus (e.g. x+++y) or minus (e.g. x---y) signs
|
28
28
|
+use_of_label # use of label
|
29
29
|
-block_without_braces # block statement without curly braces
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: distil
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 45
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 13
|
9
|
-
-
|
10
|
-
version: 0.13.
|
9
|
+
- 3
|
10
|
+
version: 0.13.3
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Jeff Watkins
|
@@ -15,7 +15,7 @@ autorequire:
|
|
15
15
|
bindir: bin
|
16
16
|
cert_chain: []
|
17
17
|
|
18
|
-
date: 2010-11-
|
18
|
+
date: 2010-11-26 00:00:00 -08:00
|
19
19
|
default_executable: distil
|
20
20
|
dependencies:
|
21
21
|
- !ruby/object:Gem::Dependency
|