bookingsync-rubocop 0.2.1 → 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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9b35431b7b501627f614c0d3c367af4aa71c0118ac72dafe61eecb2f3f058704
4
- data.tar.gz: 21bc558bf9be924dbd27089bb5cd96e4e8f9fd65388c4ae84e4dca82d835daf6
3
+ metadata.gz: b1ca935617729447d972557f104a111c7c71dee733cddf95caadea805005af8f
4
+ data.tar.gz: 44ab6cfbf816931718927472bdd115845b24e4b07a77b2aadc35a53cef8e95c0
5
5
  SHA512:
6
- metadata.gz: f8edd64d08714a9b1e97f51d6edd83ac803ea64b6dcfcbec9120764c70fbe73a5d4a6a25adf256d32c6dc2f64e4ad0445a4087c86ac2b2f9b5bea100735c199c
7
- data.tar.gz: 0f3f88c012a3f53987faff780ac73158fc4b504346226d32efcf10fea98db73d480438e04885c74067f9d5dfa07daf25054514ddace79a0dd9c3b774561e3ef0
6
+ metadata.gz: ad1337fb54a178434490687058fc2f05c8ae0cf91ca0ba2c4a6b4e895999ab6cb0d0129d655b61e34938c8e1a0b2393fba2bcb705ac9d6880891448c23eca8b8
7
+ data.tar.gz: eca7eec17cac79b5ede4030ce7c756ce18ba56b0f83087233704b4480b60682881e24a9b2150253a7844ce5c668079ba85e77e5b16edabb2c65a511fba655d56
data/.gitignore ADDED
@@ -0,0 +1,2 @@
1
+ .ruby-gemset
2
+ pkg/
data/.ruby-version ADDED
@@ -0,0 +1 @@
1
+ 3.4
data/Gemfile.lock ADDED
@@ -0,0 +1,35 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ bookingsync-rubocop (0.2.2)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ diff-lcs (1.5.1)
10
+ rake (12.3.3)
11
+ rspec (3.13.0)
12
+ rspec-core (~> 3.13.0)
13
+ rspec-expectations (~> 3.13.0)
14
+ rspec-mocks (~> 3.13.0)
15
+ rspec-core (3.13.2)
16
+ rspec-support (~> 3.13.0)
17
+ rspec-expectations (3.13.3)
18
+ diff-lcs (>= 1.2.0, < 2.0)
19
+ rspec-support (~> 3.13.0)
20
+ rspec-mocks (3.13.2)
21
+ diff-lcs (>= 1.2.0, < 2.0)
22
+ rspec-support (~> 3.13.0)
23
+ rspec-support (3.13.1)
24
+
25
+ PLATFORMS
26
+ arm64-darwin-23
27
+ ruby
28
+
29
+ DEPENDENCIES
30
+ bookingsync-rubocop!
31
+ rake (~> 12.0)
32
+ rspec (~> 3.0)
33
+
34
+ BUNDLED WITH
35
+ 2.5.16
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
- Enabled: false
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/rails.yml CHANGED
@@ -8,6 +8,9 @@ Rails/ActionOrder:
8
8
  - update
9
9
  - destroy
10
10
 
11
+ Rails/BulkChangeTable:
12
+ Enabled: false
13
+
11
14
  Rails/ThreeStateBooleanColumn:
12
15
  Enabled: false
13
16
 
data/config/rspec.yml CHANGED
@@ -8,10 +8,11 @@ RSpec/ExampleLength:
8
8
  - array
9
9
  - hash
10
10
  - heredoc
11
+ - method_call
11
12
 
12
13
  RSpec/ExpectChange:
13
14
  EnforcedStyle: block
14
-
15
+
15
16
  RSpec/IndexedLet:
16
17
  Enabled: false
17
18
 
@@ -1,5 +1,5 @@
1
1
  module Bookingsync
2
2
  module Rubocop
3
- VERSION = "0.2.1"
3
+ VERSION = "0.2.3"
4
4
  end
5
5
  end
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.1
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: 2024-08-01 00:00:00.000000000 Z
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:
@@ -17,7 +16,10 @@ executables: []
17
16
  extensions: []
18
17
  extra_rdoc_files: []
19
18
  files:
19
+ - ".gitignore"
20
+ - ".ruby-version"
20
21
  - Gemfile
22
+ - Gemfile.lock
21
23
  - LICENSE.txt
22
24
  - README.md
23
25
  - Rakefile
@@ -36,7 +38,6 @@ metadata:
36
38
  homepage_uri: https://github.com/BookingSync/bookingsync-rubocop
37
39
  source_code_uri: https://github.com/BookingSync/bookingsync-rubocop
38
40
  changelog_uri: https://github.com/BookingSync/bookingsync-rubocop
39
- post_install_message:
40
41
  rdoc_options: []
41
42
  require_paths:
42
43
  - lib
@@ -51,8 +52,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
51
52
  - !ruby/object:Gem::Version
52
53
  version: '0'
53
54
  requirements: []
54
- rubygems_version: 3.4.10
55
- signing_key:
55
+ rubygems_version: 3.6.2
56
56
  specification_version: 4
57
57
  summary: Shared Rubocop configuration for Bookingsync projects
58
58
  test_files: []