bookingsync-rubocop 0.2.2 → 0.2.3
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/.ruby-version +1 -1
- data/config/base.yml +14 -3
- data/config/rspec.yml +2 -1
- data/lib/bookingsync/rubocop/version.rb +1 -1
- metadata +3 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b1ca935617729447d972557f104a111c7c71dee733cddf95caadea805005af8f
|
4
|
+
data.tar.gz: 44ab6cfbf816931718927472bdd115845b24e4b07a77b2aadc35a53cef8e95c0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ad1337fb54a178434490687058fc2f05c8ae0cf91ca0ba2c4a6b4e895999ab6cb0d0129d655b61e34938c8e1a0b2393fba2bcb705ac9d6880891448c23eca8b8
|
7
|
+
data.tar.gz: eca7eec17cac79b5ede4030ce7c756ce18ba56b0f83087233704b4480b60682881e24a9b2150253a7844ce5c668079ba85e77e5b16edabb2c65a511fba655d56
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.
|
1
|
+
3.4
|
data/config/base.yml
CHANGED
@@ -58,6 +58,11 @@ Lint/UnusedMethodArgument:
|
|
58
58
|
AllowUnusedKeywordArguments: true
|
59
59
|
|
60
60
|
Metrics/BlockLength:
|
61
|
+
CountAsOne:
|
62
|
+
- array
|
63
|
+
- hash
|
64
|
+
- heredoc
|
65
|
+
- method_call
|
61
66
|
Exclude:
|
62
67
|
- "spec/rails_helper.rb"
|
63
68
|
- "spec/**/*_spec.rb"
|
@@ -69,9 +74,15 @@ Metrics/ClassLength:
|
|
69
74
|
- array
|
70
75
|
- hash
|
71
76
|
- heredoc
|
77
|
+
- method_call
|
72
78
|
|
73
79
|
Metrics/MethodLength:
|
74
|
-
|
80
|
+
Max: 15
|
81
|
+
CountAsOne:
|
82
|
+
- array
|
83
|
+
- hash
|
84
|
+
- heredoc
|
85
|
+
- method_call
|
75
86
|
|
76
87
|
Security/JSONLoad:
|
77
88
|
Exclude:
|
@@ -87,7 +98,7 @@ Style/ClassAndModuleChildren:
|
|
87
98
|
|
88
99
|
Style/CommandLiteral:
|
89
100
|
EnforcedStyle: percent_x
|
90
|
-
|
101
|
+
|
91
102
|
Style/Documentation:
|
92
103
|
Exclude:
|
93
104
|
- "db/migrate/**/*.rb"
|
@@ -111,6 +122,6 @@ Style/RaiseArgs:
|
|
111
122
|
|
112
123
|
Style/RegexpLiteral:
|
113
124
|
EnforcedStyle: percent_r
|
114
|
-
|
125
|
+
|
115
126
|
Style/YodaExpression:
|
116
127
|
Enabled: false
|
data/config/rspec.yml
CHANGED
metadata
CHANGED
@@ -1,14 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: bookingsync-rubocop
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Arkadiy Zabazhanov
|
8
|
-
autorequire:
|
9
8
|
bindir: exe
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-06-11 00:00:00.000000000 Z
|
12
11
|
dependencies: []
|
13
12
|
description: Shared Rubocop configuration for Bookingsync projects
|
14
13
|
email:
|
@@ -39,7 +38,6 @@ metadata:
|
|
39
38
|
homepage_uri: https://github.com/BookingSync/bookingsync-rubocop
|
40
39
|
source_code_uri: https://github.com/BookingSync/bookingsync-rubocop
|
41
40
|
changelog_uri: https://github.com/BookingSync/bookingsync-rubocop
|
42
|
-
post_install_message:
|
43
41
|
rdoc_options: []
|
44
42
|
require_paths:
|
45
43
|
- lib
|
@@ -54,8 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
54
52
|
- !ruby/object:Gem::Version
|
55
53
|
version: '0'
|
56
54
|
requirements: []
|
57
|
-
rubygems_version: 3.
|
58
|
-
signing_key:
|
55
|
+
rubygems_version: 3.6.2
|
59
56
|
specification_version: 4
|
60
57
|
summary: Shared Rubocop configuration for Bookingsync projects
|
61
58
|
test_files: []
|