simplycop 1.12.15 → 1.12.16
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/publish-docs.yaml +23 -0
- data/_pipeline/stage_publishdocs.yml +9 -0
- data/catalog-info.yaml +1 -0
- data/lib/simplycop/version.rb +1 -1
- data/mkdocs.yaml +8 -0
- metadata +5 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a17544298c8d8c23f93e5d3a8ae2939758ee2377218e28103e3994064baa6f9
|
|
4
|
+
data.tar.gz: fa315c443ad5b7dd95287ab6f3e70e4027282e8fe2cdeeda7a7fb481fe831d45
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: e0d5e08270311c95bae0e8650dde861307af42572bbf7a3c13d24e5cbeeebc3fe26e79e62fd988a09ff5679a2a67a8393e12ba0b6485be38c690e39e9f1c81fd
|
|
7
|
+
data.tar.gz: db5d142ffae9eec5571ec1779c93f194783f19e50faffd49f9b081b1c45e86a2f9452c12be7d3c2d8813e2bcc3c2fa3a6bd46072d7c3708c8e6ac00926aae580
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
name: Huxley TechDocs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
push:
|
|
6
|
+
paths:
|
|
7
|
+
- "docs/**"
|
|
8
|
+
- "mkdocs.yaml"
|
|
9
|
+
- ".github/workflows/publish-docs.yaml"
|
|
10
|
+
schedule:
|
|
11
|
+
- cron: "15 1 1 * *"
|
|
12
|
+
|
|
13
|
+
concurrency: huxley-techdocs-${{ github.ref }}
|
|
14
|
+
|
|
15
|
+
jobs:
|
|
16
|
+
publish-techdocs:
|
|
17
|
+
uses: simplybusiness/github-action-reusable-workflows/.github/workflows/techdocs.yaml@v1
|
|
18
|
+
with:
|
|
19
|
+
repo: "github-action-reusable-workflows"
|
|
20
|
+
secrets:
|
|
21
|
+
region: ${{ secrets.AWS_LIVE_CICD_REGION }}
|
|
22
|
+
aws-access-key-id: ${{ secrets.AWS_LIVE_CICD_ACCESS_KEY_ID }}
|
|
23
|
+
aws-secret-access-key: ${{ secrets.AWS_LIVE_CICD_SECRET_ACCESS_KEY }}
|
data/catalog-info.yaml
CHANGED
data/lib/simplycop/version.rb
CHANGED
data/mkdocs.yaml
ADDED
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: 1.12.
|
|
4
|
+
version: 1.12.16
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Simply Business
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-
|
|
11
|
+
date: 2023-05-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rubocop
|
|
@@ -108,6 +108,7 @@ files:
|
|
|
108
108
|
- ".github/workflows/create-github-release.yml"
|
|
109
109
|
- ".github/workflows/dobby-actions.yml"
|
|
110
110
|
- ".github/workflows/project-board.yml"
|
|
111
|
+
- ".github/workflows/publish-docs.yaml"
|
|
111
112
|
- ".github/workflows/publish_gem.yml"
|
|
112
113
|
- ".github/workflows/version_forget_me_not.yml"
|
|
113
114
|
- ".gitignore"
|
|
@@ -123,6 +124,7 @@ files:
|
|
|
123
124
|
- Gemfile
|
|
124
125
|
- README.md
|
|
125
126
|
- Rakefile
|
|
127
|
+
- _pipeline/stage_publishdocs.yml
|
|
126
128
|
- bin/console
|
|
127
129
|
- bin/setup
|
|
128
130
|
- catalog-info.yaml
|
|
@@ -139,6 +141,7 @@ files:
|
|
|
139
141
|
- lib/simplycop/security/csrf_token_validation.rb
|
|
140
142
|
- lib/simplycop/security/reject_all_requests_local.rb
|
|
141
143
|
- lib/simplycop/version.rb
|
|
144
|
+
- mkdocs.yaml
|
|
142
145
|
- mkdocs.yml
|
|
143
146
|
- simplycop.gemspec
|
|
144
147
|
- vuln_db.json
|