fablicop 1.1.1 → 1.1.2
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/.github/dependabot.yml +17 -0
- data/README.md +1 -1
- data/config/.base_rubocop.yml +3 -0
- data/lib/fablicop/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e56d78d516a2bc1e745cacfdb05bdb28919374f61b8f545cdaabef827eecaaa
|
|
4
|
+
data.tar.gz: 40299c61a9a532f47dc35a28e641f4073cfe125794442660c654a2f073a6fe7f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 9ddccb4c76956469e60c0e17c1980a5e0f193fd3791ac3fb8eb7e1131fbdf4d2797da0068a85d5b288988ea90a9bdd58e2018a34c6f61e2f84fa137ce94be8a5
|
|
7
|
+
data.tar.gz: bf458709ba64be42336838b496293d24e2c4bb1bb1595e882a56d1e35ff7826c4f375cc6b4a2880de4002075274a7ffa5bf3163331e6e547838f58e261ec6816
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: bundler
|
|
4
|
+
directory: "/"
|
|
5
|
+
schedule:
|
|
6
|
+
interval: daily
|
|
7
|
+
time: "09:00"
|
|
8
|
+
timezone: Asia/Tokyo
|
|
9
|
+
- package-ecosystem: github-actions
|
|
10
|
+
directory: "/"
|
|
11
|
+
schedule:
|
|
12
|
+
interval: weekly
|
|
13
|
+
time: "09:00"
|
|
14
|
+
timezone: Asia/Tokyo
|
|
15
|
+
ignore:
|
|
16
|
+
- dependency-name: "*"
|
|
17
|
+
update-types: ["version-update:semver-minor", "version-update:semver-patch"]
|
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# fablicop
|
|
2
2
|
|
|
3
3
|
fablicop is a RuboCop configration gem.
|
|
4
|
-
It assumes your project is using Ruby on Rails, so some Cops prefixed with `Rails` are enabled out of the box.
|
|
4
|
+
It assumes your project is using Ruby on Rails and RSpec, so some Cops prefixed with `Rails` and `RSpec` are enabled out of the box.
|
|
5
5
|
In other words, it's not appropriate to use it with non-Rails projects.
|
|
6
6
|
|
|
7
7
|
## Installation
|
data/config/.base_rubocop.yml
CHANGED
|
@@ -210,7 +210,10 @@ Metrics/BlockLength:
|
|
|
210
210
|
- "app/admin/*.rb"
|
|
211
211
|
- "config/**/*.rb"
|
|
212
212
|
|
|
213
|
+
# We discussed internally about this parameter and decided to follow this configuration.
|
|
214
|
+
# https://github.com/onk/onkcop/blob/8066859d3d00328146c1da9e57bdd4a951974ef2/config/rubocop.yml#L113-L116
|
|
213
215
|
Metrics/AbcSize:
|
|
216
|
+
Max: 20
|
|
214
217
|
Exclude:
|
|
215
218
|
- "test/**/*.rb"
|
|
216
219
|
|
data/lib/fablicop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fablicop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- tommy
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: exe
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2021-09-
|
|
13
|
+
date: 2021-09-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: rubocop
|
|
@@ -120,6 +120,7 @@ executables:
|
|
|
120
120
|
extensions: []
|
|
121
121
|
extra_rdoc_files: []
|
|
122
122
|
files:
|
|
123
|
+
- ".github/dependabot.yml"
|
|
123
124
|
- ".github/workflows/run-ci.yml"
|
|
124
125
|
- ".gitignore"
|
|
125
126
|
- ".rspec"
|