rubocop-rails_deprecation 0.2.0 → 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: da01f0263fa7e9a3194e60ab4d57c81c4b393f75428aca97ec06996d336ee9a7
4
- data.tar.gz: 3b90560d249ea93480f1b18a849f06b4b424b2eaa26c7698b52a9bbd0ea36cf9
3
+ metadata.gz: 50c57a07baf6ba0d3d701e8b399394b240e0303f60ea4db9f790b02fa62b8fe4
4
+ data.tar.gz: 76a9afe9155e2154810e512e3a2e657c0f6df2a142f6c55724c261a3cf62099f
5
5
  SHA512:
6
- metadata.gz: d306908941b38c43bbc6891a29d22902b2673fba6d51278d97a6d650df1ec9ba5a5f536923b502c25352dd47041f8b9f189b802415dcc18c08965058415c722c
7
- data.tar.gz: 6d314536880558be1dcfa822fd0d7fbd537946ea37d34ae782c2c3daa6a768279d7d1cb73478678966b570253392245cbf0bd2bb85ced777561969ab52228fe0
6
+ metadata.gz: 21378a6e0eb10d8f9ce8f472ab0cf002eaaf12514e3f22b29be8667b30a0eea162801e5fc686cf94afabcb3ee6bea63f0e25d23327e7cf458a116e28a4d35522
7
+ data.tar.gz: '07901cc6b3f6b5e0aa0cc5dd1c0a2eb4dad61195af75fa94e99061c6c3a647bab8852426334000f381e2f348ef3d78a4090b6d41b6834434a79772142c05871b'
data/CHANGELOG.md CHANGED
@@ -2,13 +2,32 @@
2
2
 
3
3
  ## Unreleased
4
4
 
5
+ ## 0.5.0 - 2022-04-10
6
+
7
+ ### Changed
8
+
9
+ - Rename Deprecation/ToFormattedS with RailsDeprecation/ToFormattedS.
10
+
11
+ ## 0.4.0 - 2022-03-14
12
+
13
+ ### Added
14
+
15
+ - Support csend on RailsDeprecation/ToFormattedS.
16
+
17
+ ## 0.3.0 - 2022-03-14
18
+
19
+ ### Changed
20
+
21
+ - Rename RailsDeprecation/ToFormattedS with Deprecation/ToFormattedS.
22
+ - Enable cop by default.
23
+
5
24
  ## 0.2.0
6
25
 
7
26
  ### Changed
8
27
 
9
28
  - Make #to_fs the default replacement for #to_s(:format).
10
29
 
11
- ## 0.1.0
30
+ ## 0.1.0 - 2022-02-23
12
31
 
13
32
  ### Added
14
33
 
data/Gemfile.lock CHANGED
@@ -1,8 +1,8 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- rubocop-rails_deprecation (0.2.0)
5
- rubocop
4
+ rubocop-rails_deprecation (0.5.0)
5
+ rubocop (>= 1.27)
6
6
 
7
7
  GEM
8
8
  remote: https://rubygems.org/
@@ -29,13 +29,13 @@ GEM
29
29
  diff-lcs (>= 1.2.0, < 2.0)
30
30
  rspec-support (~> 3.11.0)
31
31
  rspec-support (3.11.0)
32
- rubocop (1.25.1)
32
+ rubocop (1.27.0)
33
33
  parallel (~> 1.10)
34
34
  parser (>= 3.1.0.0)
35
35
  rainbow (>= 2.2.2, < 4.0)
36
36
  regexp_parser (>= 1.8, < 3.0)
37
37
  rexml
38
- rubocop-ast (>= 1.15.1, < 2.0)
38
+ rubocop-ast (>= 1.16.0, < 2.0)
39
39
  ruby-progressbar (~> 1.7)
40
40
  unicode-display_width (>= 1.4.0, < 3.0)
41
41
  rubocop-ast (1.16.0)
data/config/default.yml CHANGED
@@ -1,4 +1,4 @@
1
1
  RailsDeprecation/ToFormattedS:
2
- Description: Use `to_formatted_s(...)` instead of `to_s(...)`.
3
- Enabled: pending
2
+ Description: Use `to_fs(...)` instead of `to_s(...)`.
3
+ Enabled: true
4
4
  VersionAdded: '0.1'
@@ -30,7 +30,7 @@ module RuboCop
30
30
  MSG = 'Use `to_fs(...)` instead of `to_s(...)`.'
31
31
 
32
32
  def_node_matcher :to_s_with_any_argument?, <<~PATTERN
33
- (send _ :to_s _ ...)
33
+ ({csend | send} _ :to_s _ ...)
34
34
  PATTERN
35
35
 
36
36
  def on_send(node)
@@ -43,6 +43,7 @@ module RuboCop
43
43
  )
44
44
  end
45
45
  end
46
+ alias on_csend on_send
46
47
  end
47
48
  end
48
49
  end
@@ -2,6 +2,6 @@
2
2
 
3
3
  module RuboCop
4
4
  module RailsDeprecation
5
- VERSION = '0.2.0'
5
+ VERSION = '0.5.0'
6
6
  end
7
7
  end
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.executables = spec.files.grep(%r{\Aexe/}) { |f| File.basename(f) }
30
30
  spec.require_paths = ['lib']
31
31
 
32
- spec.add_runtime_dependency 'rubocop'
32
+ spec.add_runtime_dependency 'rubocop', '>= 1.27'
33
33
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rubocop-rails_deprecation
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
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: 2022-03-14 00:00:00.000000000 Z
11
+ date: 2022-04-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0'
19
+ version: '1.27'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
25
  - !ruby/object:Gem::Version
26
- version: '0'
26
+ version: '1.27'
27
27
  description:
28
28
  email:
29
29
  - r7kamura@gmail.com