rubocop-viewer_formatter 1.0.0 → 1.0.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9aea37ec67e9bbe3d36bde092b5eb609cbadd2a9f70e9545b6a4387aa0952a73
4
- data.tar.gz: b0b4932f113482b9baf8aa6877b94defd8a516e7f26106738d9f3771fb7ea732
3
+ metadata.gz: 3f456ebc60bba8e96df5f6f57dde0e26d43e1da514b360025d3a5365b7edb359
4
+ data.tar.gz: 1e71bcd869effb277be343b38be93087ddfe8de3dfefbf8fe45e397af89330fa
5
5
  SHA512:
6
- metadata.gz: 60e765824e982b1c01f808b3866257d303ea2d0c9b32bdb569276adf46c78c970def574502c3573996a3bb740b5ca32379fb96b58770b6f9f0782abbcaa4827e
7
- data.tar.gz: a939e8dddff55d9b9800dc10f539df101d92ef0f8abbd5983fd88a9f075db4b03ee6bada643ac98b1e83d51fe03ca6e0649f16b17c175975df99e2f896b4c0d4
6
+ metadata.gz: eeabac55077c75bbf5c2b8bef0f39815cf2a183a2f843260d4be08a9344dc08bfbbe7a903b9b0520a72def26391bc6c76ff8b94c3246a06a1b9d397d5542c7b5
7
+ data.tar.gz: '09291da609698073ddcb22223e92e1e2389ddff79e09c62e1cd888f12e1eb7dfcdedf8446f44562907fbcecec51481e4ed76074066cbba42a027a6f436e67199'
data/CHANGELOG.md ADDED
@@ -0,0 +1,19 @@
1
+ # Changelog
2
+ All notable changes to this project will be documented in this file.
3
+
4
+ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
+ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6
+
7
+ ## [Next]
8
+ ### Added
9
+ ### Changed
10
+ ### Fixed
11
+
12
+ ## [1.0.1]
13
+ ### Fixed
14
+ - fix highlighting of multi-line issues
15
+
16
+ ## [1.0.0]
17
+ ### Added
18
+ - Initial release
19
+
@@ -96,7 +96,7 @@ module RuboCop
96
96
 
97
97
  def hash_for_location(offense)
98
98
  {
99
- source: offense.source_line,
99
+ source: source_lines(offense),
100
100
  start_line: offense.line,
101
101
  last_line: offense.last_line,
102
102
  start_column: offense.column,
@@ -104,6 +104,12 @@ module RuboCop
104
104
  length: offense.location.length,
105
105
  }
106
106
  end
107
+
108
+ def source_lines(offense)
109
+ (offense.line .. offense.last_line).map do |line_num|
110
+ offense.location.source_buffer.source_line(line_num)
111
+ end.join("\n")
112
+ end
107
113
  end
108
114
  end
109
115
  end
@@ -5,7 +5,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
5
 
6
6
  Gem::Specification.new do |gem|
7
7
  gem.name = 'rubocop-viewer_formatter'
8
- gem.version = '1.0.0'
8
+ gem.version = '1.0.1'
9
9
  gem.authors = ['Edward Rudd']
10
10
  gem.email = ['urkle@outoforder.cc']
11
11
  gem.description = 'A formatter for rubocop that generates a vue based-interactive app'
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-viewer_formatter
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Edward Rudd
@@ -75,6 +75,7 @@ extra_rdoc_files: []
75
75
  files:
76
76
  - ".gitignore"
77
77
  - ".rubocop.yml"
78
+ - CHANGELOG.md
78
79
  - Gemfile
79
80
  - Rakefile
80
81
  - assets/output.html.erb