guard-jshintrb 1.1.0 → 1.1.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.
- checksums.yaml +4 -4
- data/lib/guard/jshintrb.rb +1 -1
- data/lib/guard/jshintrb/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1cd01a2d0d78c153b9affae44e4cf63edc98a8ba
|
4
|
+
data.tar.gz: 4d8b763bffcbcd7d271ea869bd0f832ade43c1dc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 28c1ca6823c25ee5e423ded36b321a7140766717bef530ff807bc3a27fb206656a0103d8ccbe4cc1b03afb1e993616e761ff889015983e1ae8e2dbea632b95ef
|
7
|
+
data.tar.gz: 45a341468ef796ecab17a8ce36430153c88910a87f9faf24ca4a4067ebb6d8d6b5ebd597e87dbb639e6f155608c11d523ef3e0389074945d9e7b1fc1ae299c05
|
data/lib/guard/jshintrb.rb
CHANGED
@@ -15,7 +15,7 @@ module Guard
|
|
15
15
|
}.merge(options)
|
16
16
|
|
17
17
|
@jshint_options = JSON.load(File.read('.jshintrc'))
|
18
|
-
@jshint_globals = @jshint_options.delete('globals')
|
18
|
+
@jshint_globals = @jshint_options.delete('globals') { Hash.new }
|
19
19
|
@jshint_ignored = File.read('.jshintignore').split.collect { |pattern| Dir.glob(pattern) }.flatten
|
20
20
|
|
21
21
|
@failed_paths = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: guard-jshintrb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1.
|
4
|
+
version: 1.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jake Mays
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2015-02-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: guard
|
@@ -102,8 +102,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
102
|
version: '0'
|
103
103
|
requirements: []
|
104
104
|
rubyforge_project:
|
105
|
-
rubygems_version: 2.
|
105
|
+
rubygems_version: 2.4.5
|
106
106
|
signing_key:
|
107
107
|
specification_version: 4
|
108
108
|
summary: A plugin to lint your .js files automatically through Guard.
|
109
109
|
test_files: []
|
110
|
+
has_rdoc:
|