rubocop-erb 0.4.0 → 0.4.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: 69ccb933a550ae4dfe699ed42350e4c39eb7b2e0e7488915ec3ead433ef1d2be
4
- data.tar.gz: cf759f1dddd604d8843fccf1bd71fa3a2d8f7a833c08f35048452bb0de18955e
3
+ metadata.gz: c57699be856b07c099f05fb62bdb69d656e008af86319f739c5e35a902628f84
4
+ data.tar.gz: 5094efa6732c052e82eb56a44c3547dc52af06594b5a7cc648f63d4bcd39ac8e
5
5
  SHA512:
6
- metadata.gz: 65177bdd79e44d0ed83f431c480ec5399ebcd4fb5d196a4c1bab61947984525cc2c2f8aaf6ff3978fd66558d058e8fcf2fb50f88d0c27ed4715613b5426e73f5
7
- data.tar.gz: 4c2ecc5c6b0be161bb72799e17761d50b5dc8387d1ae1de6043ed8dc02dfd2a16093ed49c5ca529e93c6e3d004079406d345e5d5155e883dd4527e0c4be09f65
6
+ metadata.gz: bf57a7afa7c9990b85dc9028d0bf0353c076cd8cf37702e329d6d1bbe911d34f557d48d5ce324c8400f3679e6bdcd85c27977a01d7a61567d4b0bdfcd753c26e
7
+ data.tar.gz: a9307f9f21a006152684219c01a4d683df8259eb155872c2dbf96be15d995a60924238b71648d0bda6987f01450ff5189177b5f4d5bbfaa2b8617b4a5959f92e
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-erb (0.4.0)
4
+ rubocop-erb (0.4.1)
5
5
  better_html
6
6
  rubocop (~> 1.45)
7
7
 
@@ -26,7 +26,7 @@ GEM
26
26
  tzinfo (~> 2.0)
27
27
  ast (2.4.2)
28
28
  base64 (0.2.0)
29
- better_html (2.0.2)
29
+ better_html (2.1.1)
30
30
  actionview (>= 6.0)
31
31
  activesupport (>= 6.0)
32
32
  ast (~> 2.0)
@@ -34,13 +34,13 @@ GEM
34
34
  parser (>= 2.4)
35
35
  smart_properties
36
36
  bigdecimal (3.1.6)
37
- builder (3.2.4)
37
+ builder (3.3.0)
38
38
  concurrent-ruby (1.2.3)
39
39
  connection_pool (2.4.1)
40
40
  crass (1.0.6)
41
41
  diff-lcs (1.5.1)
42
42
  drb (2.2.1)
43
- erubi (1.12.0)
43
+ erubi (1.13.0)
44
44
  i18n (1.14.4)
45
45
  concurrent-ruby (~> 1.0)
46
46
  json (2.7.1)
@@ -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.2-x86_64-linux)
53
+ nokogiri (1.16.6-x86_64-linux)
54
54
  racc (~> 1.4)
55
55
  parallel (1.24.0)
56
56
  parser (3.3.0.5)
data/config/default.yml CHANGED
@@ -79,6 +79,10 @@ Layout/LeadingEmptyLine:
79
79
  Exclude:
80
80
  - '**/*.erb'
81
81
 
82
+ Layout/LeadingEmptyLines:
83
+ Exclude:
84
+ - '**/*.erb'
85
+
82
86
  Layout/LineEndStringConcatenationIndentation:
83
87
  Exclude:
84
88
  - '**/*.erb'
@@ -131,6 +135,10 @@ Lint/EmptyFile:
131
135
  Exclude:
132
136
  - '**/*.erb'
133
137
 
138
+ Lint/OutOfRangeRegexpRef:
139
+ Exclude:
140
+ - '**/*.erb'
141
+
134
142
  Lint/SyntaxError:
135
143
  Exclude:
136
144
  - '**/*.erb'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-erb (0.4.0)
4
+ rubocop-erb (0.4.1)
5
5
  better_html
6
6
  rubocop (~> 1.45)
7
7
 
@@ -26,7 +26,7 @@ GEM
26
26
  tzinfo (~> 2.0)
27
27
  ast (2.4.2)
28
28
  base64 (0.2.0)
29
- better_html (2.0.2)
29
+ better_html (2.1.1)
30
30
  actionview (>= 6.0)
31
31
  activesupport (>= 6.0)
32
32
  ast (~> 2.0)
@@ -34,14 +34,14 @@ GEM
34
34
  parser (>= 2.4)
35
35
  smart_properties
36
36
  bigdecimal (3.1.5)
37
- builder (3.2.4)
37
+ builder (3.3.0)
38
38
  concurrent-ruby (1.2.2)
39
39
  connection_pool (2.4.1)
40
40
  crass (1.0.6)
41
41
  diff-lcs (1.5.0)
42
42
  drb (2.2.0)
43
43
  ruby2_keywords
44
- erubi (1.12.0)
44
+ erubi (1.13.0)
45
45
  i18n (1.14.1)
46
46
  concurrent-ruby (~> 1.0)
47
47
  json (2.7.1)
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Erb
5
- VERSION = '0.4.0'
5
+ VERSION = '0.4.1'
6
6
  end
7
7
  end
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.4.0
4
+ version: 0.4.1
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-03-08 00:00:00.000000000 Z
11
+ date: 2024-07-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: better_html
@@ -87,7 +87,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
87
87
  - !ruby/object:Gem::Version
88
88
  version: '0'
89
89
  requirements: []
90
- rubygems_version: 3.3.26
90
+ rubygems_version: 3.3.27
91
91
  signing_key:
92
92
  specification_version: 4
93
93
  summary: RuboCop plugin for ERB template.