rulezilla 0.4.6 → 0.4.8
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.yaml +1 -1
- data/.github/workflows/codeql-analysis.yaml +2 -2
- data/.github/workflows/gem-publish.yaml +1 -1
- data/.github/workflows/publish-docs.yaml +2 -2
- data/.github/workflows/version-forget-me-not.yaml +2 -2
- data/.gitignore +0 -1
- data/.rubocop_todo.yml +10 -11
- data/.ruby-version +1 -1
- data/lib/rulezilla/dsl.rb +2 -0
- data/lib/rulezilla/version.rb +1 -1
- data/mkdocs.yaml +1 -1
- data/rulezilla.gemspec +1 -0
- metadata +17 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 189c740b46ce56570baed23c5a9546b8961de17ae718e4700218d79410a4d8cd
|
4
|
+
data.tar.gz: cb0957be0aa258795c319ade58a343c4c65cab58e6f38a6a6c2f2b0e1ddd98b9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: '028a95ac1809f1fdb63d2ae172c0785f298460f6253ff6c88de65d1b35068dfc3e425afb426539a7b62ce92e5c78c3294c61f405fefe1da879b06528c3d9c85e'
|
7
|
+
data.tar.gz: bb1e6d402c1a31014f2e86c2d41a1dbd90accd3be563b0bf8b933cf3a45f4fb396829aaa6da22f44598abdb5818635e59731e003c154330931596a135ff332ed
|
data/.github/workflows/ci.yaml
CHANGED
@@ -3,13 +3,13 @@ name: Huxley TechDocs
|
|
3
3
|
on:
|
4
4
|
workflow_dispatch:
|
5
5
|
push:
|
6
|
-
branches:
|
6
|
+
branches: main
|
7
7
|
paths:
|
8
8
|
- "docs/**"
|
9
9
|
- "mkdocs.yml"
|
10
10
|
- ".github/workflows/publish-docs.yaml"
|
11
11
|
pull_request:
|
12
|
-
branches:
|
12
|
+
branches: main
|
13
13
|
paths:
|
14
14
|
- "docs/**"
|
15
15
|
- "mkdocs.yaml"
|
@@ -3,7 +3,7 @@ name: Check version
|
|
3
3
|
on:
|
4
4
|
pull_request:
|
5
5
|
branches:
|
6
|
-
-
|
6
|
+
- main
|
7
7
|
types: [opened, synchronize]
|
8
8
|
permissions:
|
9
9
|
contents: read
|
@@ -13,7 +13,7 @@ jobs:
|
|
13
13
|
runs-on: ubuntu-latest
|
14
14
|
|
15
15
|
steps:
|
16
|
-
- uses: simplybusiness/version-forget-me-not@v2
|
16
|
+
- uses: simplybusiness/version-forget-me-not@v2
|
17
17
|
env:
|
18
18
|
ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
19
19
|
VERSION_FILE_PATH: "lib/rulezilla/version.rb"
|
data/.gitignore
CHANGED
data/.rubocop_todo.yml
CHANGED
@@ -1,36 +1,36 @@
|
|
1
1
|
# This configuration was generated by
|
2
2
|
# `rubocop --auto-gen-config`
|
3
|
-
# on
|
3
|
+
# on 2025-02-28 15:35:40 UTC using RuboCop version 1.73.1.
|
4
4
|
# The point is for the user to remove these configuration records
|
5
5
|
# one by one as the offenses are removed from the code base.
|
6
6
|
# Note that changes in the inspected code, or installation of new
|
7
7
|
# versions of RuboCop, may require this file to be generated again.
|
8
8
|
|
9
9
|
# Offense count: 1
|
10
|
-
# Configuration parameters: Include.
|
10
|
+
# Configuration parameters: Severity, Include.
|
11
11
|
# Include: **/*.gemspec
|
12
12
|
Gemspec/RequiredRubyVersion:
|
13
13
|
Exclude:
|
14
14
|
- 'rulezilla.gemspec'
|
15
15
|
|
16
16
|
# Offense count: 1
|
17
|
-
# Configuration parameters:
|
17
|
+
# Configuration parameters: AllowedMethods, AllowedPatterns, CountRepeatedAttributes.
|
18
18
|
Metrics/AbcSize:
|
19
19
|
Max: 20
|
20
20
|
|
21
21
|
# Offense count: 2
|
22
|
-
# Configuration parameters: CountComments, CountAsOne,
|
23
|
-
#
|
22
|
+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
23
|
+
# AllowedMethods: refine
|
24
24
|
Metrics/BlockLength:
|
25
25
|
Max: 32
|
26
26
|
|
27
27
|
# Offense count: 2
|
28
|
-
# Configuration parameters: CountComments, CountAsOne,
|
28
|
+
# Configuration parameters: CountComments, CountAsOne, AllowedMethods, AllowedPatterns.
|
29
29
|
Metrics/MethodLength:
|
30
30
|
Max: 19
|
31
31
|
|
32
32
|
# Offense count: 3
|
33
|
-
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros.
|
33
|
+
# Configuration parameters: NamePrefix, ForbiddenPrefixes, AllowedMethods, MethodDefinitionMacros, UseSorbetSigs.
|
34
34
|
# NamePrefix: is_, has_, have_
|
35
35
|
# ForbiddenPrefixes: is_, has_, have_
|
36
36
|
# AllowedMethods: is_a?
|
@@ -41,7 +41,7 @@ Naming/PredicateName:
|
|
41
41
|
- 'lib/rulezilla/node.rb'
|
42
42
|
- 'lib/rulezilla/tree.rb'
|
43
43
|
|
44
|
-
# Offense count:
|
44
|
+
# Offense count: 5
|
45
45
|
# Configuration parameters: AllowedConstants.
|
46
46
|
Style/Documentation:
|
47
47
|
Exclude:
|
@@ -51,11 +51,10 @@ Style/Documentation:
|
|
51
51
|
- 'lib/rulezilla/dsl.rb'
|
52
52
|
- 'lib/rulezilla/node.rb'
|
53
53
|
- 'lib/rulezilla/tree.rb'
|
54
|
-
- 'lib/rulezilla/version.rb'
|
55
54
|
|
56
|
-
# Offense count:
|
55
|
+
# Offense count: 2
|
56
|
+
# This cop supports safe autocorrection (--autocorrect).
|
57
57
|
# Configuration parameters: MinBodyLength, AllowConsecutiveConditionals.
|
58
58
|
Style/GuardClause:
|
59
59
|
Exclude:
|
60
60
|
- 'lib/rulezilla/dsl.rb'
|
61
|
-
- 'rulezilla.gemspec'
|
data/.ruby-version
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.1
|
1
|
+
3.4.1
|
data/lib/rulezilla/dsl.rb
CHANGED
data/lib/rulezilla/version.rb
CHANGED
data/mkdocs.yaml
CHANGED
data/rulezilla.gemspec
CHANGED
metadata
CHANGED
@@ -1,15 +1,28 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rulezilla
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.4.
|
4
|
+
version: 0.4.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Simply Business
|
8
|
-
autorequire:
|
9
8
|
bindir: bin
|
10
9
|
cert_chain: []
|
11
|
-
date:
|
10
|
+
date: 2025-03-03 00:00:00.000000000 Z
|
12
11
|
dependencies:
|
12
|
+
- !ruby/object:Gem::Dependency
|
13
|
+
name: ostruct
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
15
|
+
requirements:
|
16
|
+
- - ">="
|
17
|
+
- !ruby/object:Gem::Version
|
18
|
+
version: '0'
|
19
|
+
type: :runtime
|
20
|
+
prerelease: false
|
21
|
+
version_requirements: !ruby/object:Gem::Requirement
|
22
|
+
requirements:
|
23
|
+
- - ">="
|
24
|
+
- !ruby/object:Gem::Version
|
25
|
+
version: '0'
|
13
26
|
- !ruby/object:Gem::Dependency
|
14
27
|
name: rspec
|
15
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -121,7 +134,6 @@ homepage: https://github.com/simplybusiness/rulezilla
|
|
121
134
|
licenses:
|
122
135
|
- MIT
|
123
136
|
metadata: {}
|
124
|
-
post_install_message:
|
125
137
|
rdoc_options: []
|
126
138
|
require_paths:
|
127
139
|
- lib
|
@@ -136,8 +148,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
136
148
|
- !ruby/object:Gem::Version
|
137
149
|
version: '0'
|
138
150
|
requirements: []
|
139
|
-
rubygems_version: 3.
|
140
|
-
signing_key:
|
151
|
+
rubygems_version: 3.6.2
|
141
152
|
specification_version: 4
|
142
153
|
summary: Rules DSL
|
143
154
|
test_files: []
|