salsify_rubocop 1.43.0 → 1.59.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8323b06ea02d8403a7c90b48ce8631426f493a0de17a608b3b00f3870769364c
4
- data.tar.gz: 794d9a1163fddb4a1e2a0e3f75cda9af8328205306797fb2a1037d758dd54b00
3
+ metadata.gz: 41021f5188e800cd752da1defa014c6be04055c4dcc98156b5229468a0d07007
4
+ data.tar.gz: ac92f27340a29dd8141ba01a9aa3092349e4298ac65640020c5894f47d1baa1d
5
5
  SHA512:
6
- metadata.gz: fbc339567b3c0efdce1936aba2aafc9dba968300890d270efa9b27029341d1d549fad33d004e89bcdd024209b9510e56b267a95f79ff7b300b71869fef9d6b14
7
- data.tar.gz: b2bbf8ec2d0fb5fa988f134431142ff69a324a24d8d70dc5d5f7aa6351e09fb132003d46ff174c4842749173620d0cdedfa1ec51528b2ac3cdcab03730c5e204
6
+ metadata.gz: d850261b1e03d0ccb9cb6c6e3bad8a0415c1618d460e12a8f03d301a41d3d040b4ea8b46735c5d2396a49c259f46e9be2eb8ec3f7b169cd6323246c6a22113bf
7
+ data.tar.gz: e5276256ebd82cd5e1a8cfe2f11d60658ffe144571dda4f35e4dd9b4661c1d5e39ccd1d74e9dabbfca0cfd0aa8b01b6850153dc41aeb8a89b440b8eba096fcd5
data/.circleci/config.yml CHANGED
@@ -2,7 +2,7 @@ version: 2.1
2
2
  jobs:
3
3
  lint:
4
4
  docker:
5
- - image: salsify/ruby_ci:2.7.7
5
+ - image: cimg/ruby:2.7.7
6
6
  working_directory: ~/salsify_rubocop
7
7
  steps:
8
8
  - checkout
@@ -30,7 +30,7 @@ jobs:
30
30
  ruby_version:
31
31
  type: string
32
32
  docker:
33
- - image: salsify/ruby_ci:<< parameters.ruby_version >>
33
+ - image: cimg/ruby:<< parameters.ruby_version >>
34
34
  environment:
35
35
  CIRCLE_TEST_REPORTS: "test-results"
36
36
  working_directory: ~/salsify_rubocop
@@ -70,3 +70,4 @@ workflows:
70
70
  - "3.0.0"
71
71
  - "3.1.1"
72
72
  - "3.2.0"
73
+ - "3.3.0"
data/.github/CODEOWNERS CHANGED
@@ -1 +1 @@
1
- * @jturkel @erikkessler1 @skarger
1
+ * @salsify/pim-core-backend
data/.gitignore CHANGED
@@ -7,3 +7,5 @@
7
7
  /pkg/
8
8
  /spec/reports/
9
9
  /tmp/
10
+
11
+ .idea/
data/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # salsify_rubocop
2
2
 
3
+ ## 1.59.0
4
+ - Upgrade `rubocop` to v1.59.0 to support Ruby 3.3.
5
+
6
+ ## 1.43.1
7
+ - Add configuration for `Gemspec/RequiredRubyVersion` cop for configuration manifest embedded gems
8
+
3
9
  ## 1.43.0
4
10
  - Upgrade `rubocop` to v1.43.0.
5
11
 
@@ -26,6 +26,7 @@ Bundler/GemComment:
26
26
  Gemspec/RequiredRubyVersion:
27
27
  Exclude:
28
28
  - schemas_gem/*_schemas.gemspec
29
+ - configuration_manifests_gem/*_configuration_manifests.gemspec
29
30
 
30
31
  # This cop has poor handling for the common case of a lambda arg in a DSL
31
32
  Lint/AmbiguousBlockAssociation:
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module SalsifyRubocop
4
- VERSION = '1.43.0'
4
+ VERSION = '1.59.0'
5
5
  end
@@ -37,7 +37,7 @@ Gem::Specification.new do |spec|
37
37
  spec.add_development_dependency 'rspec', '~> 3.0'
38
38
  spec.add_development_dependency 'rspec_junit_formatter'
39
39
 
40
- spec.add_runtime_dependency 'rubocop', '~> 1.43.0'
40
+ spec.add_runtime_dependency 'rubocop', '~> 1.59.0'
41
41
  spec.add_runtime_dependency 'rubocop-performance', '~> 1.15.2'
42
42
  spec.add_runtime_dependency 'rubocop-rails', '~> 2.17.4'
43
43
  spec.add_runtime_dependency 'rubocop-rspec', '~> 2.16.0'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: salsify_rubocop
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.59.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Salsify, Inc
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-20 00:00:00.000000000 Z
11
+ date: 2024-01-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -72,14 +72,14 @@ dependencies:
72
72
  requirements:
73
73
  - - "~>"
74
74
  - !ruby/object:Gem::Version
75
- version: 1.43.0
75
+ version: 1.59.0
76
76
  type: :runtime
77
77
  prerelease: false
78
78
  version_requirements: !ruby/object:Gem::Requirement
79
79
  requirements:
80
80
  - - "~>"
81
81
  - !ruby/object:Gem::Version
82
- version: 1.43.0
82
+ version: 1.59.0
83
83
  - !ruby/object:Gem::Dependency
84
84
  name: rubocop-performance
85
85
  requirement: !ruby/object:Gem::Requirement