rubocop-erb 0.4.1 → 0.5.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: c57699be856b07c099f05fb62bdb69d656e008af86319f739c5e35a902628f84
4
- data.tar.gz: 5094efa6732c052e82eb56a44c3547dc52af06594b5a7cc648f63d4bcd39ac8e
3
+ metadata.gz: f123ff1f6d2922f3c10d1b791154cc18b4e564f79692ef85b6dfcf0821df3395
4
+ data.tar.gz: 6a5f0f2f5e928daf6c737891af530d9b192a7f0029cf07000581b5001cd65b16
5
5
  SHA512:
6
- metadata.gz: bf57a7afa7c9990b85dc9028d0bf0353c076cd8cf37702e329d6d1bbe911d34f557d48d5ce324c8400f3679e6bdcd85c27977a01d7a61567d4b0bdfcd753c26e
7
- data.tar.gz: a9307f9f21a006152684219c01a4d683df8259eb155872c2dbf96be15d995a60924238b71648d0bda6987f01450ff5189177b5f4d5bbfaa2b8617b4a5959f92e
6
+ metadata.gz: bec001c332bc833a3874038da632e7603b8c666a192680e5324cac316f77bcbcbea342b5f43ecbc1e71ac17383f3b32138326b2511b761c67c33a151ad985e7a
7
+ data.tar.gz: 882774f91b3b5e198ddacb2fdc27657d5584a383d48671aa98f4bfd259a587431aca77cbefc999beb11fb45102aa4f2587efcd1d84e144c42389bee20dd15dde
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-erb (0.4.1)
4
+ rubocop-erb (0.5.0)
5
5
  better_html
6
6
  rubocop (~> 1.45)
7
7
 
data/config/default.yml CHANGED
@@ -23,6 +23,10 @@ Layout/ClosingParenthesisIndentation:
23
23
  Exclude:
24
24
  - '**/*.erb'
25
25
 
26
+ Layout/CommentIndentation:
27
+ Exclude:
28
+ - '**/*.erb'
29
+
26
30
  Layout/InitialIndentation:
27
31
  Exclude:
28
32
  - '**/*.erb'
@@ -4,6 +4,7 @@ source 'https://rubygems.org'
4
4
 
5
5
  gemspec path: '..'
6
6
 
7
+ gem 'better_html', '< 2.1' # 2.1 dropped ruby 2.7 support.
7
8
  gem 'nokogiri', '~> 1.15.0'
8
9
  gem 'rake'
9
10
  gem 'rspec'
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: ..
3
3
  specs:
4
- rubocop-erb (0.4.1)
4
+ rubocop-erb (0.5.0)
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.1.1)
29
+ better_html (2.0.2)
30
30
  actionview (>= 6.0)
31
31
  activesupport (>= 6.0)
32
32
  ast (~> 2.0)
@@ -49,9 +49,11 @@ GEM
49
49
  loofah (2.22.0)
50
50
  crass (~> 1.0.2)
51
51
  nokogiri (>= 1.12.0)
52
+ mini_portile2 (2.8.7)
52
53
  minitest (5.20.0)
53
54
  mutex_m (0.2.0)
54
- nokogiri (1.15.5-x86_64-linux)
55
+ nokogiri (1.15.5)
56
+ mini_portile2 (~> 2.8.2)
55
57
  racc (~> 1.4)
56
58
  parallel (1.24.0)
57
59
  parser (3.3.0.2)
@@ -119,6 +121,7 @@ PLATFORMS
119
121
  x86_64-linux
120
122
 
121
123
  DEPENDENCIES
124
+ better_html (< 2.1)
122
125
  nokogiri (~> 1.15.0)
123
126
  rake
124
127
  rspec
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module Erb
5
- VERSION = '0.4.1'
5
+ VERSION = '0.5.0'
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.1
4
+ version: 0.5.0
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-16 00:00:00.000000000 Z
11
+ date: 2024-07-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: better_html