forkwell_cop 0.4.0 → 0.5.0

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
  SHA1:
3
- metadata.gz: d14a73bb04baaaa704b5f3fcaa6296eb8cc879bc
4
- data.tar.gz: fa52eb8878c295317a41e8dcf71f6c47515ad905
3
+ metadata.gz: 4febb7ef97cb22fae4c138681d08467f749c4c18
4
+ data.tar.gz: 7ebe87bb23b123a8b68426608f041396f1256ffa
5
5
  SHA512:
6
- metadata.gz: 6a26947695ec99df1a25095cbe08beaba97d6e975e06d2c5a9d54b7e95f2fe4865d1f8e4728c7a9986b4e622efc1cf8829ac43f45e360d13024d7fde29997794
7
- data.tar.gz: 6ffc13be5e8623a81fc22e155b34ea09261a9b51b43f01de5efd6c419d14c62d65f6a4adf89b9616821308d684fe6f7e4bc180e2af34f8cfaaa36d895ee2a129
6
+ metadata.gz: 8f10466d68c5464eeeb452d8722f999f10413b71c281dd802045789b9d02ebf393f65d94631f363d57f7c171afcc2b0c05eccee565ba4b51a1677be12df928e7
7
+ data.tar.gz: 515d1e2faf48bb7599da2cad9a54ef55499772b064a13b81cb008cc67c2d65035dfcdeed0026146a481c1981565acdd62bd3a29d2a1ceb1f245cc7dc1f52af1b
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.3.1
1
+ 2.4.1
data/Gemfile CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  source 'https://rubygems.org'
3
4
 
4
5
  # Specify your gem's dependencies in forkwell_cop.gemspec
data/Rakefile CHANGED
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  require 'bundler/gem_tasks'
3
4
  require 'rubocop/rake_task'
4
5
 
data/config/enabled.yml CHANGED
@@ -86,7 +86,7 @@ Style/LambdaCall:
86
86
  # and_in_a_method_call({
87
87
  # no: :difference
88
88
  # })
89
- Style/IndentHash:
89
+ Layout/IndentHash:
90
90
  EnforcedStyle: consistent
91
91
 
92
92
  # ドキュメントの無い public クラスを許容する
data/config/todo.yml CHANGED
@@ -24,7 +24,7 @@ Rails/Validation:
24
24
  Style/Alias:
25
25
  Enabled: true
26
26
 
27
- Style/AlignParameters:
27
+ Layout/AlignParameters:
28
28
  Enabled: true
29
29
 
30
30
  Style/BlockDelimiters:
@@ -45,18 +45,12 @@ Style/ClassVars:
45
45
  Style/DoubleNegation:
46
46
  Enabled: true
47
47
 
48
- Style/FormatString:
49
- Enabled: true
50
-
51
48
  Style/HashSyntax:
52
49
  Enabled: false
53
50
 
54
- Style/MultilineMethodCallIndentation:
51
+ Layout/MultilineMethodCallIndentation:
55
52
  Enabled: false
56
53
 
57
- Style/SafeNavigation:
58
- Enabled: true
59
-
60
54
  Style/VariableNumber:
61
55
  Enabled: false
62
56
 
@@ -68,10 +62,6 @@ Style/GuardClause:
68
62
  Metrics/BlockLength:
69
63
  Enabled: false
70
64
 
71
- # https://github.com/bbatsov/rubocop/blob/v0.45.0/lib/rubocop/cop/rails/http_positional_arguments.rb
72
- Rails/HttpPositionalArguments:
73
- Enabled: false
74
-
75
65
  # https://github.com/bbatsov/rubocop/blob/v0.45.0/lib/rubocop/cop/rails/dynamic_find_by.rb
76
66
  Rails/DynamicFindBy:
77
67
  Enabled: false
@@ -82,7 +72,7 @@ Style/MultilineIfModifier:
82
72
  Enabled: false
83
73
 
84
74
  # https://github.com/bbatsov/rubocop/blob/v0.45.0/lib/rubocop/cop/style/space_in_lambda_literal.rb
85
- Style/SpaceInLambdaLiteral:
75
+ Layout/SpaceInLambdaLiteral:
86
76
  Enabled: false
87
77
 
88
78
  # v0.46.0
data/forkwell_cop.gemspec CHANGED
@@ -1,5 +1,6 @@
1
1
  # coding: utf-8
2
2
  # frozen_string_literal: true
3
+
3
4
  lib = File.expand_path('../lib', __FILE__)
4
5
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
5
6
  require 'forkwell_cop/version'
@@ -16,7 +17,7 @@ Gem::Specification.new do |spec|
16
17
  spec.files = `git ls-files -z`.split("\x0")
17
18
  spec.require_paths = ['lib']
18
19
 
19
- spec.add_dependency 'rubocop', '~> 0.47'
20
+ spec.add_dependency 'rubocop', '~> 0.49'
20
21
  spec.add_development_dependency 'bundler', '~> 1.13'
21
22
  spec.add_development_dependency 'rake', '~> 10.0'
22
23
  end
data/lib/forkwell_cop.rb CHANGED
@@ -1,5 +1,3 @@
1
1
  # frozen_string_literal: true
2
- require 'forkwell_cop/version'
3
2
 
4
- module ForkwellCop
5
- end
3
+ require 'forkwell_cop/version'
@@ -1,4 +1,5 @@
1
1
  # frozen_string_literal: true
2
+
2
3
  module ForkwellCop
3
- VERSION = '0.4.0'
4
+ VERSION = '0.5.0'
4
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: forkwell_cop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.0
4
+ version: 0.5.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - grooves
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-01-27 00:00:00.000000000 Z
11
+ date: 2017-08-01 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.47'
19
+ version: '0.49'
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.47'
26
+ version: '0.49'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: bundler
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -91,7 +91,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
91
91
  version: '0'
92
92
  requirements: []
93
93
  rubyforge_project:
94
- rubygems_version: 2.6.6
94
+ rubygems_version: 2.6.11
95
95
  signing_key:
96
96
  specification_version: 4
97
97
  summary: RuboCop configration in Forkwell