simplycop 1.12.14 → 1.12.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 81791402713e30674d8eb5dad084403245144a057fb20a853a6bae54de1ad0de
4
- data.tar.gz: de02d689bf85e8688e6eff3679eccfb32cb63f3dd96186c56e4a8b223c091b18
3
+ metadata.gz: 7a17544298c8d8c23f93e5d3a8ae2939758ee2377218e28103e3994064baa6f9
4
+ data.tar.gz: fa315c443ad5b7dd95287ab6f3e70e4027282e8fe2cdeeda7a7fb481fe831d45
5
5
  SHA512:
6
- metadata.gz: 5ca68ef630434db92fd3061830f2838e279e707a5174572034a439dfaf13ff93c354aacedcff663ed1c7c552a88456a115c5b86ad2ac6b8ba1896b9849f6f6f7
7
- data.tar.gz: fcf1c9c832e18ae52609837ce4657b72ba32eb85168ef526dcaf3c497b1b9dff54153aa0b851fd1f9b3620e94e1d83b6c65ae335945f65b172f6d0b8498b87ed
6
+ metadata.gz: e0d5e08270311c95bae0e8650dde861307af42572bbf7a3c13d24e5cbeeebc3fe26e79e62fd988a09ff5679a2a67a8393e12ba0b6485be38c690e39e9f1c81fd
7
+ data.tar.gz: db5d142ffae9eec5571ec1779c93f194783f19e50faffd49f9b081b1c45e86a2f9452c12be7d3c2d8813e2bcc3c2fa3a6bd46072d7c3708c8e6ac00926aae580
@@ -19,7 +19,7 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- ruby-version: ['3.0', '3.1', '3.2', jruby]
22
+ ruby-version: ['2.7', '3.0', '3.1', '3.2', jruby]
23
23
 
24
24
  steps:
25
25
  - uses: actions/checkout@v3
@@ -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/.ruby-version CHANGED
@@ -1 +1 @@
1
- 3.0.4
1
+ 2.7.8
@@ -0,0 +1,9 @@
1
+ version: 0.2
2
+
3
+ phases:
4
+ install:
5
+ commands:
6
+ - docker_setup
7
+ build:
8
+ commands:
9
+ - run_huxley publish_backstage_docs
data/catalog-info.yaml CHANGED
@@ -6,6 +6,7 @@ metadata:
6
6
  annotations:
7
7
  github.com/project-slug: "simplybusiness/simplycop"
8
8
  backstage.io/source-location: url:https://github.com/simplybusiness/simplycop/
9
+ backstage.io/techdocs-ref: dir:.
9
10
  spec:
10
11
  type: library
11
12
  lifecycle: production
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.12.14'
10
+ VERSION = '1.12.16'
11
11
  end
data/mkdocs.yaml ADDED
@@ -0,0 +1,8 @@
1
+ site_name: Simplycop docs
2
+ repo_url: https://github.com/simplybusiness/simplycop
3
+ edit_uri: blob/master/docs/
4
+ docs_dir: "docs"
5
+ nav:
6
+ - Home: index.md
7
+ plugins:
8
+ - techdocs-core
data/simplycop.gemspec CHANGED
@@ -9,7 +9,7 @@ Gem::Specification.new do |spec|
9
9
  spec.version = Simplycop::VERSION
10
10
  spec.authors = ['Simply Business']
11
11
  spec.email = ['tech@simplybusiness.co.uk']
12
- spec.required_ruby_version = '>= 3.0.4'
12
+ spec.required_ruby_version = '>= 2.7'
13
13
  spec.license = 'MIT'
14
14
  spec.summary = 'Provides a single point of reference for common rubocop rules.'
15
15
  spec.description = 'Require this gem in your application to use Simply Business common rubocop rules.'
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.14
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-04-24 00:00:00.000000000 Z
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
@@ -154,7 +157,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
154
157
  requirements:
155
158
  - - ">="
156
159
  - !ruby/object:Gem::Version
157
- version: 3.0.4
160
+ version: '2.7'
158
161
  required_rubygems_version: !ruby/object:Gem::Requirement
159
162
  requirements:
160
163
  - - ">="