simplycop 1.9.2 → 1.9.5

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5fc2098b69d184121e46498013efd5aafc563652793e142a4ce6c5b08304f20b
4
- data.tar.gz: c3d7bec666b7b525a85566cb5faa5df64b542611e952f895f1e1c34e72cdf833
3
+ metadata.gz: 150d6575bbca0608cab225346ba2a422c630140658e7a082827fa2e0121c097f
4
+ data.tar.gz: c37d21fb2b8801f69d10757099275019f6190ec452074e8da6edba8953ff72dc
5
5
  SHA512:
6
- metadata.gz: 39ff62a7b63e07302e060faf2d22af6ef689328a9dd035d58948eb35f62e131f5351522af9f862e4bf21799808081a6aca0cdde628ed89dad81c856542005778
7
- data.tar.gz: 0e2cc452f17abb9d4641e09885b22282cf6ff583508d9c4b04caafd89de707d4687e60786921b137b1efc3d73b0649ab9b6cba79fd4631f400247ab786ef46c2
6
+ metadata.gz: 873af54d423288250da14e21b31c3db67cf99375d4d5dea019884a552267e10c83fa189bf0c9f0455aa3987189653ff26e0de959c6c3486863b221b494231920
7
+ data.tar.gz: fa902b7eeff5705d71d87930bd839135103b8762335ad6f84699855b232827cdd316358a2179b2cf589bd0447e48fa974a48b9ea49a3bd9169369989db3e9940
@@ -19,7 +19,7 @@ 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
25
  - uses: actions/checkout@v2
@@ -0,0 +1,34 @@
1
+ name: Create GitHub Release
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - "master"
7
+
8
+ 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
+ })
@@ -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 }}
data/.ruby-version CHANGED
@@ -1 +1 @@
1
- 2.6.5
1
+ 2.7.6
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.9.2'
10
+ VERSION = '1.9.5'
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.2
4
+ version: 1.9.5
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-05-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -105,7 +105,9 @@ files:
105
105
  - ".custom_simplycop.yml"
106
106
  - ".github/dependabot.yml"
107
107
  - ".github/workflows/ci.yml"
108
+ - ".github/workflows/create-github-release.yml"
108
109
  - ".github/workflows/dobby-actions.yml"
110
+ - ".github/workflows/project-board.yml"
109
111
  - ".github/workflows/publish_gem.yml"
110
112
  - ".github/workflows/version_forget_me_not.yml"
111
113
  - ".gitignore"
@@ -159,7 +161,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
161
  - !ruby/object:Gem::Version
160
162
  version: '0'
161
163
  requirements: []
162
- rubygems_version: 3.2.32
164
+ rubygems_version: 3.3.7
163
165
  signing_key:
164
166
  specification_version: 4
165
167
  summary: Provides a single point of reference for common rubocop rules.