simplycop 1.9.1 → 1.9.4

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: 1a29b770b541b2f3a6ef6168c4841716a7252e6177827b53da7ad4a699e3ad2d
4
- data.tar.gz: 42d094390b9722d90b9702065b8999ef7e8b1546d5ff4c0b42d8c6f56c664589
3
+ metadata.gz: 59a1044e135659a7c3dd6382907e5446d107272da499209f95e382fc41133502
4
+ data.tar.gz: 1ca7e0db17663bc02cb1760f39702fe3dbbe929118b736beec7bfca69b9a1446
5
5
  SHA512:
6
- metadata.gz: feec480c50cc3710054fd3f20d217bdc77b93f7564037fe71c67920c710b71dff8d4c37813d9f318a48410716acbd8cc5bcdd77c9ac30facd93ba8c80b815310
7
- data.tar.gz: '0599f55d176c3f02dedb6b2628a5305f65e179a1c721305a042ab3dfeb8d7244638aaffc49010ebf1b02f3dd2c2e57cf112d05c686d1685ac85c53475432c6af'
6
+ metadata.gz: 467bd70648b42567e7690c02f33b6b114f8839c4fa262e65fd0cb51c6b3b7e43f2e1c25273d04e74b5994cfbf8b0786f8c94d9d1fcba154ab95398368062278b
7
+ data.tar.gz: 23258dda95e8ba1befb30fac2b17c6b6d6b47110ad3a0c8044d6e0d4a65f1a05df1382c7213a2eb05ee2012f9b46ac404781cabfbeaa9bbd7f608da69eb831bd
@@ -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
+ })
@@ -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.0
17
+ - uses: simplybusiness/version-forget-me-not@V2.1.1
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
@@ -7,5 +7,5 @@
7
7
  #
8
8
 
9
9
  module Simplycop
10
- VERSION = '1.9.1'
10
+ VERSION = '1.9.4'
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.1
4
+ version: 1.9.4
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-08 00:00:00.000000000 Z
11
+ date: 2022-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rubocop
@@ -105,6 +105,7 @@ 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"
109
110
  - ".github/workflows/publish_gem.yml"
110
111
  - ".github/workflows/version_forget_me_not.yml"
@@ -159,7 +160,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
159
160
  - !ruby/object:Gem::Version
160
161
  version: '0'
161
162
  requirements: []
162
- rubygems_version: 3.2.32
163
+ rubygems_version: 3.3.7
163
164
  signing_key:
164
165
  specification_version: 4
165
166
  summary: Provides a single point of reference for common rubocop rules.