meowcop 2.5.0 → 2.6.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: d8f4ead154851a55cbd2abf2da57a772839710b8a8bf7b93756bfeee3e79d223
4
- data.tar.gz: 9f751036c5315b082c07d8a2f84f94b6481140e22cce77b70d1ff5bd69fe565b
3
+ metadata.gz: f69749bc8f59e9e1a3350bd24b3d3962ddaad861747c552b9205b2d98f56834c
4
+ data.tar.gz: 3c3bb7c8567778603cd89bceaf0ee551fce02d621bf8ee7ee5d9212d54cd80f3
5
5
  SHA512:
6
- metadata.gz: 6c3acf7cf5af6d062aa1ee3b653c01c6dd02b37ac46ea4197ecd3b327b5eab08995efee64e2d529685cd4ec856bd5bca2c7594925dbc95bdf1ba88339e27c985
7
- data.tar.gz: a3f4808cbd24e5e841e2ed8f8fe57066195f249aa20d492538fac87227c4c3df056e14e2c754f01f1157a5af45c3cf82fc1d62bf08f7c13e3ca9e87809471ea1
6
+ metadata.gz: 28e7ee3e953fddc40b232b33ab167465bef620a7cc16f12193ad2af9d584ed8270c7d1bd292320e93f5ec30d20f0f86490f4ac9bdc5cccc0f3fb9c1a9ca4ccf9
7
+ data.tar.gz: 66215da747d6668968d5c69e8546f85c893d79585754b2db7e46069203925b09c62b1b8055678163d5e3de6925b42d124bb7c81cb97bd90e0d90c0f9a68d13cc
data/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2016 Masataka Kuwabara and Sider, Inc.
3
+ Copyright (c) 2016 Sleeek Corporation
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
data/README.md CHANGED
@@ -90,14 +90,15 @@ $ bundle exec rake install
90
90
 
91
91
  To release a new version,
92
92
 
93
- 1. Update the version number in [`version.rb`](lib/meowcop/version.rb).
94
- 2. Update the [changelog](CHANGELOG.md).
95
- 3. Commit the updated files with the following format message: `Release x.y.z`
96
- 4. Run the following command, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
97
-
98
- ```sh
99
- $ bundle exec rake release
100
- ```
93
+ 1. Move to the **master** branch and fetch the latest revision. E.g. `git checkout master && git pull`
94
+ 2. Update the version number in [`version.rb`](lib/meowcop/version.rb).
95
+ 3. Update the [changelog](CHANGELOG.md).
96
+ 4. Commit the updated files with the following message: `Release x.y.z`
97
+ 5. Run the following command, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
98
+
99
+ ```sh
100
+ $ bundle exec rake release
101
+ ```
101
102
 
102
103
  ## Contributing
103
104
 
@@ -23,7 +23,7 @@ Lint/AssignmentInCondition:
23
23
  # See. http://tech.sideci.com/entry/2016/11/01/105900
24
24
  Lint/EmptyWhen:
25
25
  Enabled: false
26
- Lint/HandleExceptions:
26
+ Lint/SuppressedException:
27
27
  Enabled: false
28
28
  Lint/Loop:
29
29
  Enabled: false
@@ -78,13 +78,13 @@ Security/YAMLLoad:
78
78
 
79
79
  Layout/AccessModifierIndentation:
80
80
  Enabled: false
81
- Layout/AlignArguments:
81
+ Layout/ArgumentAlignment:
82
82
  Enabled: false
83
- Layout/AlignArray:
83
+ Layout/ArrayAlignment:
84
84
  Enabled: false
85
- Layout/AlignHash:
85
+ Layout/HashAlignment:
86
86
  Enabled: false
87
- Layout/AlignParameters:
87
+ Layout/ParameterAlignment:
88
88
  Enabled: false
89
89
  Layout/BlockEndNewline:
90
90
  Enabled: false
@@ -126,21 +126,21 @@ Layout/ExtraSpacing:
126
126
  Enabled: false
127
127
  Layout/HeredocArgumentClosingParenthesis:
128
128
  Enabled: false
129
- Layout/IndentFirstArgument:
129
+ Layout/FirstArgumentIndentation:
130
130
  Enabled: false
131
- Layout/IndentFirstArrayElement:
131
+ Layout/FirstArrayElementIndentation:
132
132
  Enabled: false
133
- Layout/IndentFirstParameter:
133
+ Layout/FirstParameterIndentation:
134
134
  Enabled: false
135
- Layout/IndentAssignment:
135
+ Layout/AssignmentIndentation:
136
136
  Enabled: false
137
137
  Layout/IndentationConsistency:
138
138
  Enabled: false
139
139
  Layout/IndentationWidth:
140
140
  Enabled: false
141
- Layout/IndentFirstHashElement:
141
+ Layout/FirstHashElementIndentation:
142
142
  Enabled: false
143
- Layout/IndentHeredoc:
143
+ Layout/HeredocIndentation:
144
144
  Enabled: false
145
145
  Layout/InitialIndentation:
146
146
  Enabled: false
@@ -212,7 +212,7 @@ Layout/SpaceInsideReferenceBrackets:
212
212
  Enabled: false
213
213
  Layout/SpaceInsideStringInterpolation:
214
214
  Enabled: false
215
- Layout/TrailingBlankLines:
215
+ Layout/TrailingEmptyLines:
216
216
  Enabled: false
217
217
  Layout/TrailingWhitespace:
218
218
  Enabled: false
@@ -224,7 +224,7 @@ Layout/EndAlignment:
224
224
  Enabled: false
225
225
  Layout/ClosingHeredocIndentation:
226
226
  Enabled: false
227
- Layout/LeadingBlankLines:
227
+ Layout/LeadingEmptyLines:
228
228
  Enabled: false
229
229
 
230
230
  Naming/AccessorMethodName:
@@ -247,9 +247,9 @@ Naming/VariableName:
247
247
  Enabled: false
248
248
  Naming/VariableNumber:
249
249
  Enabled: false
250
- Naming/UncommunicativeBlockParamName:
250
+ Naming/BlockParameterName:
251
251
  Enabled: false
252
- Naming/UncommunicativeMethodParamName:
252
+ Naming/MethodParameterName:
253
253
  Enabled: false
254
254
 
255
255
  # THIS BLOCK IS AUTO-GENERATED. DO NOT EDIT.
@@ -1,3 +1,3 @@
1
1
  module Meowcop
2
- VERSION = "2.5.0".freeze
2
+ VERSION = "2.6.0".freeze
3
3
  end
metadata CHANGED
@@ -1,15 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: meowcop
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.5.0
4
+ version: 2.6.0
5
5
  platform: ruby
6
6
  authors:
7
- - Masataka Kuwabara
8
- - Sider, Inc.
7
+ - Sleeek Corporation
9
8
  autorequire:
10
9
  bindir: exe
11
10
  cert_chain: []
12
- date: 2019-10-29 00:00:00.000000000 Z
11
+ date: 2019-11-28 00:00:00.000000000 Z
13
12
  dependencies:
14
13
  - !ruby/object:Gem::Dependency
15
14
  name: rubocop
@@ -17,7 +16,7 @@ dependencies:
17
16
  requirements:
18
17
  - - ">="
19
18
  - !ruby/object:Gem::Version
20
- version: 0.76.0
19
+ version: 0.77.0
21
20
  - - "<"
22
21
  - !ruby/object:Gem::Version
23
22
  version: 1.0.0
@@ -27,7 +26,7 @@ dependencies:
27
26
  requirements:
28
27
  - - ">="
29
28
  - !ruby/object:Gem::Version
30
- version: 0.76.0
29
+ version: 0.77.0
31
30
  - - "<"
32
31
  - !ruby/object:Gem::Version
33
32
  version: 1.0.0
@@ -144,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
144
143
  - !ruby/object:Gem::Version
145
144
  version: '0'
146
145
  requirements: []
147
- rubygems_version: 3.0.6
146
+ rubygems_version: 3.0.3
148
147
  signing_key:
149
148
  specification_version: 4
150
149
  summary: A RuboCop configuration focusing Lint