guard-jshintrb 1.0.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d2efd3e838a90827e77f68429ddef23bee1f405a
4
+ data.tar.gz: cfa92c46df1fe3a1a81b844bbf5311029b92b19e
5
+ SHA512:
6
+ metadata.gz: 5b74740d4a7ef5ac88f85a9713899facd460a52e7a4388e172722a96023c4867c8057686b529d761e93379e988a2c1e82fe0236a0fd2630a1b8df31de1009331
7
+ data.tar.gz: 5dc6ba193161652784aa5a358f096cf49d1d7bd9a97dabfcee0e5e611a4f21c8952ef7e6264c6601f8f2c3d748a728b457c56861c9fac82439f37716e13518e2
@@ -0,0 +1,33 @@
1
+ # See http://help.github.com/ignore-files/ for more about ignoring files.
2
+ #
3
+ # If you find yourself ignoring temporary files generated by your text editor
4
+ # or operating system, you probably want to add a global ignore instead:
5
+ # git config --global core.excludesfile '~/.gitignore_global'
6
+
7
+ # Ignore bundler config.
8
+ /.bundle
9
+
10
+ # Ignore the default SQLite database.
11
+ /db/*.sqlite3
12
+ /db/*.sqlite3-journal
13
+
14
+ # Ignore all logfiles and tempfiles.
15
+ /log/*.log
16
+ /tmp
17
+
18
+ # OSX files
19
+ .DS_Store
20
+
21
+ # Simplecov files
22
+ coverage
23
+
24
+ # vagrant files
25
+ boxes/*
26
+ .vagrant
27
+
28
+ # jasmine-rails files
29
+ spec/tmp
30
+ spec/javascripts/fixtures/generated/
31
+
32
+ # Rubygem files
33
+ /pkg
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in guard-jshintrb.gemspec
4
+ gemspec
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2013 The Garage
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,29 @@
1
+ # Guard::Jshintrb
2
+
3
+ TODO: Write a gem description
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ gem 'guard-jshintrb'
10
+
11
+ And then execute:
12
+
13
+ $ bundle
14
+
15
+ Or install it yourself as:
16
+
17
+ $ gem install guard-jshintrb
18
+
19
+ ## Usage
20
+
21
+ TODO: Write usage instructions here
22
+
23
+ ## Contributing
24
+
25
+ 1. Fork it
26
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
27
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
28
+ 4. Push to the branch (`git push origin my-new-feature`)
29
+ 5. Create new Pull Request
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,26 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'guard/jshintrb/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "guard-jshintrb"
8
+ spec.version = Guard::JshintrbVersion::VERSION
9
+ spec.authors = ["Jake Mays"]
10
+ spec.email = ["quaunaut@gmail.com"]
11
+ spec.description = "A Guard for jshintrb."
12
+ spec.summary = "A plugin to lint your .js files automatically through Guard."
13
+ spec.homepage = ""
14
+ spec.license = "MIT"
15
+
16
+ spec.files = `git ls-files`.split($/)
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+
21
+ spec.add_runtime_dependency 'guard'
22
+ spec.add_runtime_dependency 'jshintrb'
23
+
24
+ spec.add_development_dependency "bundler", "~> 1.3"
25
+ spec.add_development_dependency "rake"
26
+ end
@@ -0,0 +1,64 @@
1
+ require 'guard/jshintrb/version'
2
+ require 'guard'
3
+ require 'guard/guard'
4
+ require 'guard/watcher'
5
+ require 'jshintrb'
6
+ require 'json'
7
+
8
+ module Guard
9
+ class Jshintrb < Guard
10
+ def initialize(watchers = [], options = {})
11
+ super
12
+ @options = {
13
+ all_on_start: false,
14
+ keep_failed: false
15
+ }.merge(options)
16
+
17
+ @jshint_options = JSON.load(File.read('.jshintrc'))
18
+ @jshint_globals = @jshint_options.delete('globals')
19
+ @jshint_ignored = File.read('.jshintignore').split.collect { |pattern| Dir.glob(pattern) }.flatten
20
+
21
+ @failed_paths = []
22
+ end
23
+
24
+ def start
25
+ UI.info 'Guard::JSHintRB is running'
26
+ run_all if @options[:all_on_start]
27
+ end
28
+
29
+ def reload
30
+ @failed_paths = []
31
+ end
32
+
33
+ def run_all
34
+ UI.info 'Running JSHint over all JS files.'
35
+ paths = Watcher.match_files(self, Dir.glob(File.join('**', '*.js')))
36
+ run_on_changes paths
37
+ end
38
+
39
+ def run_on_changes(paths)
40
+ paths << @failed_paths if @options[:keep_failed]
41
+ run paths.uniq
42
+ end
43
+
44
+ private
45
+
46
+ def run(paths = [])
47
+ paths -= @jshint_ignored
48
+ total = 0
49
+ paths.each do |path|
50
+ warnings = ::Jshintrb.lint(File.read(path), @jshint_options, @jshint_globals.keys)
51
+ warnings.compact!
52
+ if !warnings.empty?
53
+ UI.info "#{path} - #{warnings.size} Errors"
54
+ warnings.each do |warning|
55
+ UI.error "#{warning['reason']} - #{warning['line']}:#{warning['character']}"
56
+ UI.warning " #{warning['evidence']}"
57
+ end
58
+ total += warnings.size
59
+ end
60
+ end
61
+ UI.info "Guard::JSHintRB inspected #{paths.size} files, found #{total} errors."
62
+ end
63
+ end
64
+ end
@@ -0,0 +1,4 @@
1
+ guard :jshintrb do
2
+ watch(%r{^app/assets/javascripts/.+.js})
3
+ watch(%r{^spec/javascripts/.+.js})
4
+ end
@@ -0,0 +1,5 @@
1
+ module Guard
2
+ module JshintrbVersion
3
+ VERSION = "1.0.0"
4
+ end
5
+ end
metadata ADDED
@@ -0,0 +1,109 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: guard-jshintrb
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Jake Mays
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2013-09-27 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: guard
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '>='
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '>='
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: jshintrb
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - '>='
32
+ - !ruby/object:Gem::Version
33
+ version: '0'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - '>='
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ~>
46
+ - !ruby/object:Gem::Version
47
+ version: '1.3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - ~>
53
+ - !ruby/object:Gem::Version
54
+ version: '1.3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - '>='
60
+ - !ruby/object:Gem::Version
61
+ version: '0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - '>='
67
+ - !ruby/object:Gem::Version
68
+ version: '0'
69
+ description: A Guard for jshintrb.
70
+ email:
71
+ - quaunaut@gmail.com
72
+ executables: []
73
+ extensions: []
74
+ extra_rdoc_files: []
75
+ files:
76
+ - .gitignore
77
+ - Gemfile
78
+ - LICENSE.txt
79
+ - README.md
80
+ - Rakefile
81
+ - guard-jshintrb.gemspec
82
+ - lib/guard/jshintrb.rb
83
+ - lib/guard/jshintrb/templates/Guardfile
84
+ - lib/guard/jshintrb/version.rb
85
+ homepage: ''
86
+ licenses:
87
+ - MIT
88
+ metadata: {}
89
+ post_install_message:
90
+ rdoc_options: []
91
+ require_paths:
92
+ - lib
93
+ required_ruby_version: !ruby/object:Gem::Requirement
94
+ requirements:
95
+ - - '>='
96
+ - !ruby/object:Gem::Version
97
+ version: '0'
98
+ required_rubygems_version: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - '>='
101
+ - !ruby/object:Gem::Version
102
+ version: '0'
103
+ requirements: []
104
+ rubyforge_project:
105
+ rubygems_version: 2.0.6
106
+ signing_key:
107
+ specification_version: 4
108
+ summary: A plugin to lint your .js files automatically through Guard.
109
+ test_files: []