fablicop 0.3.3 → 0.3.4

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
- SHA1:
3
- metadata.gz: e3818ef98ddcbc202be4c5034788a3a03288defd
4
- data.tar.gz: 10facae73a08868afc990d9448f6ef2dc42ba6dd
2
+ SHA256:
3
+ metadata.gz: c6336916da55646911ca5f5576683a203d03827c9aeb95470de2e16451adf648
4
+ data.tar.gz: 324cada0a0b7f9b88220f483e17c7eef823b8b51c7380913367cc3fcfc185ce4
5
5
  SHA512:
6
- metadata.gz: c84290a4a6a46259e1bb1354b877eee29da01cd5af70e866e494db83bbb6801628135041c0e72db56fd509fe038ca01a58ab2c6069686a4a7299ea1a90b4e6ec
7
- data.tar.gz: f17d6066ee4017d145d6ddaa743a8ecdcd10c0a603f7144a27346cdc1a419cc548eba1c0addf45bfc58770ca819326bad473062ea2ceee3ddd1a4d1284803643
6
+ metadata.gz: 82b4877446d3c62a662e28e9666b4b02f44982d4ae0c3a784417b10652f8d7445d9810c298b7205e8c15a254d4cbbb48a8c67cc33c418a4ce65344339b614873
7
+ data.tar.gz: 9f4ec2dab1d41f8e7aa58c2ad649e26effeb2bf2392931463a19fd98d050f5476910e7b26e90282d3f2474f249fa7ed3b17ad6c6c8a4f37c99fa9ec8005c0aad
data/config/.rubocop.yml CHANGED
@@ -72,7 +72,7 @@ Style/EmptyMethod:
72
72
  # )
73
73
  # foo(a,
74
74
  # b)
75
- Style/MultilineMethodCallBraceLayout:
75
+ Layout/MultilineMethodCallBraceLayout:
76
76
  Enabled: false
77
77
  # メソッド指定の多様性を許可
78
78
  # while a
@@ -90,14 +90,14 @@ Style/MultilineMethodCallBraceLayout:
90
90
  # .b
91
91
  # something
92
92
  # end
93
- Style/MultilineMethodCallIndentation:
93
+ Layout/MultilineMethodCallIndentation:
94
94
  Enabled: false
95
95
 
96
96
  # aaa(bbb(
97
97
  # ccc
98
98
  # ))
99
99
  # 的なのができないのは不便すぎるのでdisable
100
- Style/FirstParameterIndentation:
100
+ Layout/FirstParameterIndentation:
101
101
  Enabled: false
102
102
 
103
103
  # 候補が多いときはcondみたいに使いたい
@@ -119,6 +119,18 @@ Style/MethodCallWithoutArgsParentheses:
119
119
  Style/DefWithParentheses:
120
120
  Enabled: false
121
121
 
122
+ # 以下の両方を許容
123
+ # aaa.
124
+ # bb().
125
+ # cc()
126
+ # aaa
127
+ # .bb()
128
+ # .cc()
129
+ # 前者は途中にコメントをはさむことができて実用上圧倒的に便利.
130
+ # 後者はデフォルトでrubocopがおすすめしてるやつ
131
+ Layout/DotPosition:
132
+ Enabled: false
133
+
122
134
  ##################### Layout ##################################
123
135
  # 引数前のスペースは複数許可
124
136
  Layout/SpaceBeforeFirstArg:
data/fablicop.gemspec CHANGED
@@ -6,8 +6,8 @@ require 'fablicop/version'
6
6
  Gem::Specification.new do |spec|
7
7
  spec.name = "fablicop"
8
8
  spec.version = Fablicop::VERSION
9
- spec.authors = ["tommy"]
10
- spec.email = ["kazushige_tominaga@fablic.co.jp"]
9
+ spec.authors = ["tommy", "ujihisa", "sinamon129"]
10
+ spec.email = ["kazushige_tominaga@fablic.co.jp", "tatsuhiro_ujihisa@fablic.co.jp", "shihomi_katayama@fablic.co.jp"]
11
11
 
12
12
  spec.summary = "fablicop is a RuboCop configration gem. "
13
13
  spec.description = "fablicop is a RuboCop configration gem."
@@ -1,3 +1,3 @@
1
1
  module Fablicop
2
- VERSION = '0.3.3'
2
+ VERSION = '0.3.4'
3
3
  end
metadata CHANGED
@@ -1,14 +1,16 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fablicop
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.3
4
+ version: 0.3.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - tommy
8
+ - ujihisa
9
+ - sinamon129
8
10
  autorequire:
9
11
  bindir: exe
10
12
  cert_chain: []
11
- date: 2017-12-26 00:00:00.000000000 Z
13
+ date: 2018-02-03 00:00:00.000000000 Z
12
14
  dependencies:
13
15
  - !ruby/object:Gem::Dependency
14
16
  name: rubocop
@@ -69,6 +71,8 @@ dependencies:
69
71
  description: fablicop is a RuboCop configration gem.
70
72
  email:
71
73
  - kazushige_tominaga@fablic.co.jp
74
+ - tatsuhiro_ujihisa@fablic.co.jp
75
+ - shihomi_katayama@fablic.co.jp
72
76
  executables:
73
77
  - fablicop
74
78
  extensions: []
@@ -109,7 +113,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
109
113
  version: '0'
110
114
  requirements: []
111
115
  rubyforge_project:
112
- rubygems_version: 2.6.12
116
+ rubygems_version: 2.7.3
113
117
  signing_key:
114
118
  specification_version: 4
115
119
  summary: fablicop is a RuboCop configration gem.