simplycop 1.9.5 → 1.10.0

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: 150d6575bbca0608cab225346ba2a422c630140658e7a082827fa2e0121c097f
4
- data.tar.gz: c37d21fb2b8801f69d10757099275019f6190ec452074e8da6edba8953ff72dc
3
+ metadata.gz: 2d9a590b1d45e4b0036a837db3771f8edbd189b91165a39124c4f13c8a721005
4
+ data.tar.gz: 4cbc5a52df681b0637d654f8819c3132754394b682d42128efb665886335a255
5
5
  SHA512:
6
- metadata.gz: 873af54d423288250da14e21b31c3db67cf99375d4d5dea019884a552267e10c83fa189bf0c9f0455aa3987189653ff26e0de959c6c3486863b221b494231920
7
- data.tar.gz: fa902b7eeff5705d71d87930bd839135103b8762335ad6f84699855b232827cdd316358a2179b2cf589bd0447e48fa974a48b9ea49a3bd9169369989db3e9940
6
+ metadata.gz: 4f5ed44897ec6371c3e3566be6028cc10aca39e67141865ce9fda79296f1f2337fda537164d922ad6f90766179b15c8eadd4f67f6893af5caf3fbb2d462db432
7
+ data.tar.gz: 6a66b652a73dd35f84fb16e10cfa7ccc0b66bf6451b63f6f4931fe719e5cb951778a68b4bdd9c57115e552543ce81fa7714146c970ba9d8e844353c83b4924f5
@@ -22,7 +22,7 @@ jobs:
22
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 }}
@@ -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/.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.5'
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.5
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: 2022-05-25 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