meowcop 2.5.0 → 2.6.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 +4 -4
- data/LICENSE +1 -1
- data/README.md +9 -8
- data/config/rubocop.yml +15 -15
- data/lib/meowcop/version.rb +1 -1
- metadata +6 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f69749bc8f59e9e1a3350bd24b3d3962ddaad861747c552b9205b2d98f56834c
|
|
4
|
+
data.tar.gz: 3c3bb7c8567778603cd89bceaf0ee551fce02d621bf8ee7ee5d9212d54cd80f3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
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
|
|
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.
|
|
94
|
-
2. Update the [
|
|
95
|
-
3.
|
|
96
|
-
4.
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
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
|
|
data/config/rubocop.yml
CHANGED
|
@@ -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/
|
|
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/
|
|
81
|
+
Layout/ArgumentAlignment:
|
|
82
82
|
Enabled: false
|
|
83
|
-
Layout/
|
|
83
|
+
Layout/ArrayAlignment:
|
|
84
84
|
Enabled: false
|
|
85
|
-
Layout/
|
|
85
|
+
Layout/HashAlignment:
|
|
86
86
|
Enabled: false
|
|
87
|
-
Layout/
|
|
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/
|
|
129
|
+
Layout/FirstArgumentIndentation:
|
|
130
130
|
Enabled: false
|
|
131
|
-
Layout/
|
|
131
|
+
Layout/FirstArrayElementIndentation:
|
|
132
132
|
Enabled: false
|
|
133
|
-
Layout/
|
|
133
|
+
Layout/FirstParameterIndentation:
|
|
134
134
|
Enabled: false
|
|
135
|
-
Layout/
|
|
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/
|
|
141
|
+
Layout/FirstHashElementIndentation:
|
|
142
142
|
Enabled: false
|
|
143
|
-
Layout/
|
|
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/
|
|
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/
|
|
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/
|
|
250
|
+
Naming/BlockParameterName:
|
|
251
251
|
Enabled: false
|
|
252
|
-
Naming/
|
|
252
|
+
Naming/MethodParameterName:
|
|
253
253
|
Enabled: false
|
|
254
254
|
|
|
255
255
|
# THIS BLOCK IS AUTO-GENERATED. DO NOT EDIT.
|
data/lib/meowcop/version.rb
CHANGED
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.
|
|
4
|
+
version: 2.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
|
-
-
|
|
8
|
-
- Sider, Inc.
|
|
7
|
+
- Sleeek Corporation
|
|
9
8
|
autorequire:
|
|
10
9
|
bindir: exe
|
|
11
10
|
cert_chain: []
|
|
12
|
-
date: 2019-
|
|
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.
|
|
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.
|
|
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.
|
|
146
|
+
rubygems_version: 3.0.3
|
|
148
147
|
signing_key:
|
|
149
148
|
specification_version: 4
|
|
150
149
|
summary: A RuboCop configuration focusing Lint
|