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 +4 -4
- data/.github/workflows/ci.yml +1 -1
- data/.github/workflows/create-github-release.yml +34 -0
- data/.github/workflows/version_forget_me_not.yml +1 -1
- data/.ruby-version +1 -1
- data/lib/simplycop/version.rb +1 -1
- metadata +4 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 59a1044e135659a7c3dd6382907e5446d107272da499209f95e382fc41133502
|
|
4
|
+
data.tar.gz: 1ca7e0db17663bc02cb1760f39702fe3dbbe929118b736beec7bfca69b9a1446
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 467bd70648b42567e7690c02f33b6b114f8839c4fa262e65fd0cb51c6b3b7e43f2e1c25273d04e74b5994cfbf8b0786f8c94d9d1fcba154ab95398368062278b
|
|
7
|
+
data.tar.gz: 23258dda95e8ba1befb30fac2b17c6b6d6b47110ad3a0c8044d6e0d4a65f1a05df1382c7213a2eb05ee2012f9b46ac404781cabfbeaa9bbd7f608da69eb831bd
|
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
|
+
})
|
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.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:
|
|
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.
|
|
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.
|