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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/create-github-release.yml +34 -0
- data/.github/workflows/project-board.yml +17 -0
- data/.ruby-version +1 -1
- data/lib/simplycop/version.rb +1 -1
- metadata +5 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 150d6575bbca0608cab225346ba2a422c630140658e7a082827fa2e0121c097f
|
|
4
|
+
data.tar.gz: c37d21fb2b8801f69d10757099275019f6190ec452074e8da6edba8953ff72dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 873af54d423288250da14e21b31c3db67cf99375d4d5dea019884a552267e10c83fa189bf0c9f0455aa3987189653ff26e0de959c6c3486863b221b494231920
|
|
7
|
+
data.tar.gz: fa902b7eeff5705d71d87930bd839135103b8762335ad6f84699855b232827cdd316358a2179b2cf589bd0447e48fa974a48b9ea49a3bd9169369989db3e9940
|
data/.github/workflows/ci.yml
CHANGED
|
@@ -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
|
|
1
|
+
2.7.6
|
data/lib/simplycop/version.rb
CHANGED
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.
|
|
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:
|
|
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.
|
|
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.
|