pronto-erb_lint 0.1.3 → 0.1.4
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 +5 -5
- data/lib/pronto/erb_lint.rb +3 -5
- data/lib/pronto/erb_lint/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 205addbe4d9986449fbedea8b2fe4fc106f388d0
|
4
|
+
data.tar.gz: 44023ad84faaad5bf2f2e407294f18ae588301bb
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 01a20f4a4119c37175fb278eb5a6a83cfa058639e0b17deb9a4fda335ca48503f5b2957ce9f13aa3646edd2035c98eed9b3527fdf7f8db68a5a8d8041050babb
|
7
|
+
data.tar.gz: 91d575b686255c49c88c08fa6f91476085d69faed90adf60eaa45b557f87576b2fe557e10b178bec0a1399ea18e700bda46fb873d90fcbbd9fb282ca821827f1
|
data/lib/pronto/erb_lint.rb
CHANGED
@@ -11,7 +11,6 @@ module Pronto
|
|
11
11
|
super
|
12
12
|
@options = {}
|
13
13
|
load_config
|
14
|
-
@inspector = ::ERBLint::Runner.new(file_loader, @config)
|
15
14
|
end
|
16
15
|
|
17
16
|
def run
|
@@ -96,10 +95,9 @@ module Pronto
|
|
96
95
|
end
|
97
96
|
|
98
97
|
def inspect(patch)
|
99
|
-
|
100
|
-
|
101
|
-
|
102
|
-
offences.map do |offence|
|
98
|
+
inspector = ::ERBLint::Runner.new(file_loader, @config)
|
99
|
+
inspector.run(processed_source_for(patch))
|
100
|
+
inspector.offenses.map do |offence|
|
103
101
|
patch.added_lines
|
104
102
|
.select { |line| offence.line_range.include? line.new_lineno }
|
105
103
|
.map { |line| new_message(offence, line) }
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pronto-erb_lint
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- tleish
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-05-
|
11
|
+
date: 2018-05-14 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: erb_lint
|
@@ -113,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
113
113
|
version: '0'
|
114
114
|
requirements: []
|
115
115
|
rubyforge_project:
|
116
|
-
rubygems_version: 2.
|
116
|
+
rubygems_version: 2.6.12
|
117
117
|
signing_key:
|
118
118
|
specification_version: 4
|
119
119
|
summary: Pronto runner for ERB Lint, erb code analyzer
|