rubocop-codetakt 1.25.1.1 → 1.74.0.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 +4 -4
- data/.github/workflows/spec.yml +17 -0
- data/config/performance.yml +2 -1
- data/config/rails.yml +2 -1
- data/config/rspec.yml +2 -1
- data/lib/rubocop/codetakt/version.rb +1 -1
- data/rubocop-codetakt.gemspec +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0d7fbf45a1c040d0eb831eee6eed5a56c71b20702ff4bce98f1874576fedb7ab
|
4
|
+
data.tar.gz: 54a1407976ac7eda5aee0fd183f4f96e8e2fa0cc28f77fa859c8caf5965e5b01
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 06b3a9cf05abdeb7e6fff48fda2a17c26d5d2813040cfbe651b81c5b57ec933640aee4a26ab5d8037a0200acb1c2afbf1573895f5998c4a7d323a9f401454268
|
7
|
+
data.tar.gz: 1b67c345eb359c8bbd47ffd8a0fd1356584c366a412d496fc77048578ed2ba7256d2f1ddaaaa28eb01881ac0fa32755f3ed31e6182d2cb941ca43b4aed904727
|
@@ -0,0 +1,17 @@
|
|
1
|
+
on:
|
2
|
+
push:
|
3
|
+
branches:
|
4
|
+
- main
|
5
|
+
tags:
|
6
|
+
- v*
|
7
|
+
pull_request:
|
8
|
+
jobs:
|
9
|
+
spec:
|
10
|
+
runs-on: ubuntu-latest
|
11
|
+
steps:
|
12
|
+
- uses: actions/checkout@v4
|
13
|
+
- uses: ruby/setup-ruby@v1
|
14
|
+
with:
|
15
|
+
ruby-version: 3.4.2
|
16
|
+
bundler-cache: true
|
17
|
+
- run: bundle exec rake rspec
|
data/config/performance.yml
CHANGED
data/config/rails.yml
CHANGED
data/config/rspec.yml
CHANGED
data/rubocop-codetakt.gemspec
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubocop-codetakt
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.74.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- codeTakt Developers
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 1980-01-01 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rubocop
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 1.
|
19
|
+
version: 1.74.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 1.
|
26
|
+
version: 1.74.0
|
27
27
|
description: |2
|
28
28
|
This includes the RuboCop configuration used by codeTakt. It is
|
29
29
|
for the unification and linting of coding styles.
|
@@ -34,6 +34,7 @@ executables:
|
|
34
34
|
extensions: []
|
35
35
|
extra_rdoc_files: []
|
36
36
|
files:
|
37
|
+
- ".github/workflows/spec.yml"
|
37
38
|
- ".gitignore"
|
38
39
|
- ".rspec"
|
39
40
|
- ".rubocop.yml"
|
@@ -75,7 +76,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
76
|
- !ruby/object:Gem::Version
|
76
77
|
version: '0'
|
77
78
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
79
|
+
rubygems_version: 3.5.22
|
79
80
|
signing_key:
|
80
81
|
specification_version: 4
|
81
82
|
summary: Unify the coding style of Ruby within codeTakt Inc.
|