simplycop 1.9.3 → 1.10.0

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: ec517feecdfddc227b8c05455b16b71e591b758dcd8ff25798c7cfe3f87d2426
4
- data.tar.gz: f1372a8fae299e0d6893abf79b02082b4351ef61737ea1b3008e5e8e14fc182a
3
+ metadata.gz: 2d9a590b1d45e4b0036a837db3771f8edbd189b91165a39124c4f13c8a721005
4
+ data.tar.gz: 4cbc5a52df681b0637d654f8819c3132754394b682d42128efb665886335a255
5
5
  SHA512:
6
- metadata.gz: 2b15f6411b7428e3fdcbf32233e6cd8b7333d1f1983dc7a27f7db05f2bc0be02b699e7eec3fc78db55331b815b39087cbf1b77cd60d0cc6f97672fa124d784cf
7
- data.tar.gz: 37d555d999fbe433d7f7fd545d5a43d79368085be0bc327af1242f4b32c9f96dcd9acbbf61715fb64f86533660cf62fa568ab9c38eb1d4bbedb98a90b64f7e8b
6
+ metadata.gz: 4f5ed44897ec6371c3e3566be6028cc10aca39e67141865ce9fda79296f1f2337fda537164d922ad6f90766179b15c8eadd4f67f6893af5caf3fbb2d462db432
7
+ data.tar.gz: 6a66b652a73dd35f84fb16e10cfa7ccc0b66bf6451b63f6f4931fe719e5cb951778a68b4bdd9c57115e552543ce81fa7714146c970ba9d8e844353c83b4924f5
@@ -19,10 +19,10 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- ruby-version: [2.5, 2.6.5, 2.7, 3.0, jruby]
22
+ ruby-version: [2.5, 2.6, 2.7, jruby]
23
23
 
24
24
  steps:
25
- - uses: actions/checkout@v2
25
+ - uses: actions/checkout@v3
26
26
  - name: Set up Ruby
27
27
  uses: ruby/setup-ruby@v1
28
28
  with:
@@ -5,30 +5,14 @@ on:
5
5
  branches:
6
6
  - "master"
7
7
 
8
+ permissions:
9
+ contents: write
10
+
8
11
  jobs:
9
- create-release:
10
- runs-on: ubuntu-latest
11
- steps:
12
- - name: Checkout
13
- uses: actions/checkout@v2
14
- - name: Set up Ruby
15
- uses: ruby/setup-ruby@v1
16
- with:
17
- bundler-cache: true
18
- - name: Get Gem Version
19
- id: get-gem-version
20
- run: echo "::set-output name=GEM_VERSION::$(bundle exec ruby -e 'puts Simplycop::VERSION')"
21
- - name: Create Release
22
- uses: actions/github-script@v5
23
- env:
24
- GEM_VERSION: ${{ steps.get-gem-version.outputs.GEM_VERSION }}
25
- with:
26
- result-encoding: string
27
- script: |
28
- const { GEM_VERSION } = process.env
29
- github.rest.repos.createRelease({
30
- owner: context.repo.owner,
31
- repo: context.repo.repo,
32
- tag_name: GEM_VERSION,
33
- generate_release_notes: true,
34
- })
12
+ create-new-release:
13
+ uses: simplybusiness/github-action-reusable-workflows/.github/workflows/create-github-release.yaml@v1
14
+ with:
15
+ gem_version_class: "Simplycop::VERSION"
16
+ secrets:
17
+ bnw-registry-user: ${{ secrets.GH_ACTIONS_NEXUS_USER }}
18
+ bnw-registry-password: ${{ secrets.GH_ACTIONS_NEXUS_PASSWORD }}
@@ -13,7 +13,7 @@ jobs:
13
13
  BUNDLE_WITHOUT: "development:test"
14
14
  steps:
15
15
  - name: Chekcout action
16
- uses: actions/checkout@v2
16
+ uses: actions/checkout@v3
17
17
  with:
18
18
  repository: 'simplybusiness/dobby'
19
19
  ref: 'v3.0.0'
@@ -22,7 +22,7 @@ jobs:
22
22
  with:
23
23
  bundler-cache: true
24
24
  - name: Bump version
25
- uses: simplybusiness/dobby@v3.0.0
25
+ uses: simplybusiness/dobby@v3.0.1
26
26
  env:
27
27
  DOBBY_APP_ID: ${{ secrets.DOBBY_APP_ID }}
28
28
  DOBBY_PRIVATE_KEY: ${{ secrets.DOBBY_PRIVATE_KEY }}
@@ -0,0 +1,17 @@
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 }}
@@ -11,7 +11,7 @@ jobs:
11
11
  name: Build and Publish
12
12
  runs-on: ubuntu-18.04
13
13
  steps:
14
- - uses: actions/checkout@v2
14
+ - uses: actions/checkout@v3
15
15
  - name: Set up Ruby 2.6
16
16
  uses: actions/setup-ruby@v1
17
17
  with:
@@ -14,7 +14,7 @@ jobs:
14
14
  runs-on: ubuntu-18.04
15
15
 
16
16
  steps:
17
- - uses: simplybusiness/version-forget-me-not@V2.1.1
17
+ - uses: simplybusiness/version-forget-me-not@v2.3.0
18
18
  env:
19
19
  ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
20
20
  VERSION_FILE_PATH: "lib/simplycop/version.rb"
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.5
1
+ 2.7.6
data/.simplycop.yml CHANGED
@@ -22,9 +22,6 @@ AllCops:
22
22
  ExtraDetails: true
23
23
  # Adapted from: https://github.com/simplybusiness/how-we-roll/blob/master/development/RUBYSTYLEGUIDE.markdown
24
24
 
25
- Gemspec/DateAssignment:
26
- Enabled: true
27
-
28
25
  Layout/EmptyLineAfterMultilineCondition:
29
26
  Enabled: true
30
27
 
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.9.3'
10
+ VERSION = '1.10.0'
11
11
  end
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.9.3
4
+ version: 1.10.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Simply Business
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-12-09 00:00:00.000000000 Z
11
+ date: 2022-08-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -107,6 +107,7 @@ files:
107
107
  - ".github/workflows/ci.yml"
108
108
  - ".github/workflows/create-github-release.yml"
109
109
  - ".github/workflows/dobby-actions.yml"
110
+ - ".github/workflows/project-board.yml"
110
111
  - ".github/workflows/publish_gem.yml"
111
112
  - ".github/workflows/version_forget_me_not.yml"
112
113
  - ".gitignore"
@@ -160,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
160
161
  - !ruby/object:Gem::Version
161
162
  version: '0'
162
163
  requirements: []
163
- rubygems_version: 3.2.32
164
+ rubygems_version: 3.3.7
164
165
  signing_key:
165
166
  specification_version: 4
166
167
  summary: Provides a single point of reference for common rubocop rules.