simplycop 2.1.0 → 2.1.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/.github/workflows/ci.yml +0 -2
- data/.github/workflows/publish_gem.yml +2 -4
- data/.github/workflows/version_forget_me_not.yml +2 -2
- data/.ruby-version +1 -1
- data/catalog-info.yaml +1 -0
- data/lib/simplycop/version.rb +1 -1
- data/simplycop.gemspec +1 -0
- metadata +17 -4
- data/.github/workflows/project-board.yml +0 -17
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 000cf1bc9a3ce7fa8510669b9798297f40bdaa415055d682c173ddcf69872171
|
|
4
|
+
data.tar.gz: 02544db0db9ceb38a9ce563b7aa9d31cf3270b94b6d5effeeb01e3813ec4487d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 71b6ed44429ff01ec492aefbc1d40acc837a8f820c64c4d8b46bc4a5d82564a7219f258d484f4b67ed279db22cd6918f994df871b3dda794b3140e52ea5ec75a
|
|
7
|
+
data.tar.gz: 8213755a3848b3df27b8c74871c4ae9b0013d7d4ab0bf54f07d768413502bc7e991594cbd28ff52476699f4855bf751769962819f89610553973d335ba2ea461
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -12,10 +12,8 @@ jobs:
|
|
|
12
12
|
runs-on: ubuntu-latest
|
|
13
13
|
steps:
|
|
14
14
|
- uses: actions/checkout@v4
|
|
15
|
-
- name: Set up Ruby
|
|
16
|
-
uses:
|
|
17
|
-
with:
|
|
18
|
-
version: 3.1.x
|
|
15
|
+
- name: Set up Ruby
|
|
16
|
+
uses: ruby/setup-ruby@v1
|
|
19
17
|
- name: Publish to RubyGems
|
|
20
18
|
run: |
|
|
21
19
|
mkdir -p $HOME/.gem
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
|
|
2
1
|
name: Check version
|
|
3
2
|
|
|
4
3
|
on:
|
|
@@ -6,13 +5,14 @@ on:
|
|
|
6
5
|
branches:
|
|
7
6
|
- master
|
|
8
7
|
types: [opened, synchronize]
|
|
8
|
+
|
|
9
9
|
permissions:
|
|
10
10
|
contents: read
|
|
11
11
|
statuses: write
|
|
12
|
+
|
|
12
13
|
jobs:
|
|
13
14
|
build:
|
|
14
15
|
runs-on: ubuntu-latest
|
|
15
|
-
|
|
16
16
|
steps:
|
|
17
17
|
- uses: simplybusiness/version-forget-me-not@v2
|
|
18
18
|
env:
|
data/.ruby-version
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.3.
|
|
1
|
+
3.3.3
|
data/catalog-info.yaml
CHANGED
data/lib/simplycop/version.rb
CHANGED
data/simplycop.gemspec
CHANGED
|
@@ -18,6 +18,7 @@ Gem::Specification.new do |spec|
|
|
|
18
18
|
spec.require_paths = ['lib']
|
|
19
19
|
|
|
20
20
|
spec.add_dependency 'rubocop', '1.65.0'
|
|
21
|
+
spec.add_dependency 'rubocop-ast', '1.32.0'
|
|
21
22
|
spec.add_dependency 'rubocop-capybara', '2.21.0'
|
|
22
23
|
spec.add_dependency 'rubocop-factory_bot', '2.26.1'
|
|
23
24
|
spec.add_dependency 'rubocop-performance', '1.21.1'
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplycop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.1.
|
|
4
|
+
version: 2.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simply Business
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-08-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -24,6 +24,20 @@ dependencies:
|
|
|
24
24
|
- - '='
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: 1.65.0
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rubocop-ast
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: 1.32.0
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: 1.32.0
|
|
27
41
|
- !ruby/object:Gem::Dependency
|
|
28
42
|
name: rubocop-capybara
|
|
29
43
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -163,7 +177,6 @@ files:
|
|
|
163
177
|
- ".github/workflows/ci.yml"
|
|
164
178
|
- ".github/workflows/create-github-release.yml"
|
|
165
179
|
- ".github/workflows/dobby-actions.yml"
|
|
166
|
-
- ".github/workflows/project-board.yml"
|
|
167
180
|
- ".github/workflows/publish-docs.yaml"
|
|
168
181
|
- ".github/workflows/publish_gem.yml"
|
|
169
182
|
- ".github/workflows/sast-tools.yaml"
|
|
@@ -236,7 +249,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
236
249
|
- !ruby/object:Gem::Version
|
|
237
250
|
version: '0'
|
|
238
251
|
requirements: []
|
|
239
|
-
rubygems_version: 3.
|
|
252
|
+
rubygems_version: 3.5.11
|
|
240
253
|
signing_key:
|
|
241
254
|
specification_version: 4
|
|
242
255
|
summary: Provides a single point of reference for common rubocop rules.
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
name: Automatically add new Issues to Silversmith's GitHub project board
|
|
2
|
-
# https://github.com/orgs/simplybusiness/projects/3
|
|
3
|
-
# New issues in this repository will be added to the board.
|
|
4
|
-
on:
|
|
5
|
-
issues:
|
|
6
|
-
types: [ opened, reopened ]
|
|
7
|
-
|
|
8
|
-
jobs:
|
|
9
|
-
track_issues:
|
|
10
|
-
uses: simplybusiness/github-action-reusable-workflows/.github/workflows/project-board.yaml@master
|
|
11
|
-
with:
|
|
12
|
-
pr-id: ${{ github.event.issue.node_id }}
|
|
13
|
-
project-number: 3
|
|
14
|
-
org: simplybusiness
|
|
15
|
-
actor: ${{ github.actor }}
|
|
16
|
-
secrets:
|
|
17
|
-
github-token: ${{ secrets.SILVERSMITHS_PROJECT_MANAGEMENT }}
|