simplycop 2.37.0 → 2.37.1
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/bootstrap.yml +28 -0
- data/_pipeline/stage_bootstrap.yml +9 -0
- data/lib/simplycop/version.rb +1 -1
- metadata +4 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc13a21ffa1158f010af207d369d2c9fb460ad933ffddfd89dc84d5107761d07
|
|
4
|
+
data.tar.gz: 835720a22716fe71370a07a46d598656b49cd46109404c0f185e61dd95d8be43
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c4bf2183f85da12d4ee6df3b18f2a14c371a30f58f8391c14e53008e9ba0a14b2bfe05195a42acbcfc363d338e3518240b8f8d8f5444138b8777d54cb13d26b
|
|
7
|
+
data.tar.gz: 16f96c1b95ccfa7cfeb7749cd3eebd8bab87ea85f3673e65b91aa8085ef3bd1862bc8aba476cf679149a309905b86fc8afeb949e048f7cf276470018a80bd8d3
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
name: Bootstrap
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
|
|
6
|
+
permissions:
|
|
7
|
+
contents: read
|
|
8
|
+
|
|
9
|
+
concurrency: huxley-ci-${{ github.ref }}
|
|
10
|
+
|
|
11
|
+
env:
|
|
12
|
+
REPOSITORY: simplycop
|
|
13
|
+
jobs:
|
|
14
|
+
|
|
15
|
+
Bootstrap:
|
|
16
|
+
runs-on: ubuntu-latest
|
|
17
|
+
steps:
|
|
18
|
+
- name: Configure AWS Credentials
|
|
19
|
+
uses: aws-actions/configure-aws-credentials@v5
|
|
20
|
+
with:
|
|
21
|
+
aws-access-key-id : ${{ secrets.AWS_LIVE_CICD_ACCESS_KEY_ID }}
|
|
22
|
+
aws-secret-access-key: ${{ secrets.AWS_LIVE_CICD_SECRET_ACCESS_KEY }}
|
|
23
|
+
aws-region : ${{ vars.AWS_LIVE_CICD_REGION }}
|
|
24
|
+
- name: Bootstrap
|
|
25
|
+
uses: aws-actions/aws-codebuild-run-build@v1
|
|
26
|
+
with:
|
|
27
|
+
project-name: ${{ env.REPOSITORY }}
|
|
28
|
+
buildspec-override: _pipeline/stage_bootstrap.yml
|
data/lib/simplycop/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: simplycop
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.37.
|
|
4
|
+
version: 2.37.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simply Business
|
|
8
8
|
bindir: bin
|
|
9
9
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
10
|
+
date: 2026-02-03 00:00:00.000000000 Z
|
|
11
11
|
dependencies:
|
|
12
12
|
- !ruby/object:Gem::Dependency
|
|
13
13
|
name: benchmark
|
|
@@ -201,6 +201,7 @@ extra_rdoc_files: []
|
|
|
201
201
|
files:
|
|
202
202
|
- ".custom_simplycop.yml"
|
|
203
203
|
- ".github/dependabot.yml"
|
|
204
|
+
- ".github/workflows/bootstrap.yml"
|
|
204
205
|
- ".github/workflows/ci.yml"
|
|
205
206
|
- ".github/workflows/create-github-release.yml"
|
|
206
207
|
- ".github/workflows/dobby-actions.yml"
|
|
@@ -235,6 +236,7 @@ files:
|
|
|
235
236
|
- README.md
|
|
236
237
|
- Rakefile
|
|
237
238
|
- _pipeline/config.yml
|
|
239
|
+
- _pipeline/stage_bootstrap.yml
|
|
238
240
|
- _pipeline/stage_publishdocs.yml
|
|
239
241
|
- _pipeline/stage_sast_tools.yml
|
|
240
242
|
- bin/console
|