sequra-style 1.11.0 → 1.12.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/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/default.yml +4 -1
- data/lib/sequra/style/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4e4dec973551218c6ba6abb09563dfe5970c07c2c0a9071ae973986bbd82ef98
|
|
4
|
+
data.tar.gz: e3e919698b4527a5d775180310e60798b5b516350311728eddf8fb2e357745ed
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8586466f9343180dd0e128beaf4681fba18c194e76870a2e0615283c0c63960e5a2c768818c97054e3cc821dfb70c5e3a66af8ef0797fb38fc570a6c280bf007
|
|
7
|
+
data.tar.gz: e9efb7c1840793a8c0af44584941f038bbd2b3824f3bff2f1273c1263d55d278e0e3034ea457dd865309fa5858a4cff39f386986d7b4afad9c74f5b115f5bada
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.12.0](https://github.com/sequra/sequra-style/compare/v1.11.0...v1.12.0) (2026-03-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Remove migrations and bin from cops ([#64](https://github.com/sequra/sequra-style/issues/64)) ([d55240d](https://github.com/sequra/sequra-style/commit/d55240d2f9e979c5cfa7ce7d10755eaac6e7ea87))
|
|
9
|
+
|
|
3
10
|
## [1.11.0](https://github.com/sequra/sequra-style/compare/v1.10.1...v1.11.0) (2026-02-13)
|
|
4
11
|
|
|
5
12
|
|
data/Gemfile.lock
CHANGED
data/default.yml
CHANGED
|
@@ -16,9 +16,10 @@ AllCops:
|
|
|
16
16
|
- "**/node_modules/**/*"
|
|
17
17
|
- "local_files/**/*"
|
|
18
18
|
- db/*.rb
|
|
19
|
+
- bin/*
|
|
19
20
|
|
|
20
21
|
# Exclude migration files created before December 2025:
|
|
21
|
-
# NOTE: Do not keep adding new
|
|
22
|
+
# NOTE: Do not keep adding new exclusions here. New migrations after this are expected to comply with the current style
|
|
22
23
|
# guide.
|
|
23
24
|
- db/*/2011*.rb
|
|
24
25
|
- db/*/2012*.rb
|
|
@@ -676,6 +677,8 @@ Style/MethodCallWithArgsParentheses:
|
|
|
676
677
|
- to
|
|
677
678
|
- travel
|
|
678
679
|
- use
|
|
680
|
+
Exclude:
|
|
681
|
+
- "db/migrate/*.rb
|
|
679
682
|
|
|
680
683
|
# Omit parentheses for method calls without arguments
|
|
681
684
|
Style/MethodCallWithoutArgsParentheses:
|
data/lib/sequra/style/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: sequra-style
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.12.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sequra engineering
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2026-
|
|
11
|
+
date: 2026-03-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|