rubocop-erb 0.5.0 → 0.5.2

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: f123ff1f6d2922f3c10d1b791154cc18b4e564f79692ef85b6dfcf0821df3395
4
- data.tar.gz: 6a5f0f2f5e928daf6c737891af530d9b192a7f0029cf07000581b5001cd65b16
3
+ metadata.gz: 227bb09e4901cb5d84bec63ed5c65f60d2955ddd4e16768ada9044845466fd16
4
+ data.tar.gz: 8245ac7615be745be61b612c99d455eaa86b987d8328b4765e6b35efbbb62cba
5
5
  SHA512:
6
- metadata.gz: bec001c332bc833a3874038da632e7603b8c666a192680e5324cac316f77bcbcbea342b5f43ecbc1e71ac17383f3b32138326b2511b761c67c33a151ad985e7a
7
- data.tar.gz: 882774f91b3b5e198ddacb2fdc27657d5584a383d48671aa98f4bfd259a587431aca77cbefc999beb11fb45102aa4f2587efcd1d84e144c42389bee20dd15dde
6
+ metadata.gz: 5a479746047e28f98ca518824bfeb1ea2469e50faa2830eba0db2b76339e9fb2ab69c5de6abeb63c7e844180fd5198f6919a51de88d48e7455affc3b75db0165
7
+ data.tar.gz: 70aa186e9d2e09011081e228f897a92ae65df19ec252839851b0a41ba404605f77847b942ca58c4dba78a9f222c49c830c039d3da714595a7bcad7f5cb42c728
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-erb (0.5.0)
4
+ rubocop-erb (0.5.2)
5
5
  better_html
6
6
  rubocop (~> 1.45)
7
7
 
@@ -50,7 +50,7 @@ GEM
50
50
  nokogiri (>= 1.12.0)
51
51
  minitest (5.22.2)
52
52
  mutex_m (0.2.0)
53
- nokogiri (1.16.6-x86_64-linux)
53
+ nokogiri (1.16.7-x86_64-linux)
54
54
  racc (~> 1.4)
55
55
  parallel (1.24.0)
56
56
  parser (3.3.0.5)
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-erb (0.5.0)
4
+ rubocop-erb (0.5.2)
5
5
  better_html
6
6
  rubocop (~> 1.45)
7
7
 
@@ -146,11 +146,12 @@ module RuboCop
146
146
  # Remove trailing `do`.
147
147
  class TrailingDoRemover < TrailingSourceRemover
148
148
  REGEXP = /
149
- [ \t]
149
+ (?:\b[ \t]*|[ \t])
150
150
  do
151
151
  [ \t]*
152
152
  (?:\|[^|]*\|)?
153
153
  \s*
154
+ (\#.*)?
154
155
  \z
155
156
  /x.freeze
156
157
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Erb
5
- VERSION = '0.5.0'
5
+ VERSION = '0.5.2'
6
6
  end
7
7
  end
@@ -30,10 +30,17 @@ module RuboCop
30
30
  match_data = @ruby_clip.code.match(REGEXP)
31
31
  if match_data
32
32
  offset = match_data[0].length
33
- parse("[#{@ruby_clip.code[offset..]}]").children.map do |child|
33
+ condition = @ruby_clip.code[offset..].sub(/[ \t]then(?:[ \t].*)?/, '')
34
+ parse(
35
+ <<~RUBY
36
+ [
37
+ #{condition}
38
+ ]
39
+ RUBY
40
+ ).children.map do |child|
34
41
  RubyClip.new(
35
42
  code: child.location.expression.source,
36
- offset: @ruby_clip.offset + offset + child.location.expression.begin_pos - 1
43
+ offset: @ruby_clip.offset + offset + child.location.expression.begin_pos - 4
37
44
  )
38
45
  end
39
46
  else
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-erb
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryo Nakamura
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2024-07-23 00:00:00.000000000 Z
11
+ date: 2024-07-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: better_html