rulezilla 0.4.2 → 0.4.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/gem-publish.yaml +2 -2
- data/lib/rulezilla/dsl.rb +2 -2
- data/lib/rulezilla/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7b17c9edd83d16882c06bf4e600c91b47426e950986389b43959ea18bd2047b
|
4
|
+
data.tar.gz: 17322c90cc09145aeb2e501a7072cc302bff1cdff88b2fc59e438c55a4a58824
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8c52638e124a89f66d065b794a864f8f0ae68d0c087ec350965e3d3589a9fb6e275e3230ce38a95f565bbf6fa7211726e08b31563bf28d394b0e8ef602ab2c4a
|
7
|
+
data.tar.gz: 50e144f4244eebd23357ff8f09d0a7c75c21c828e6b86e8724a03d58ede8db5cdf8edf9bb8909268f6908b8b1e07baa810a1604d70d01ccb2e6044aaee1fc626
|
@@ -1,4 +1,4 @@
|
|
1
|
-
name: Publish Ruby Gem
|
1
|
+
name: Publish Ruby Gem (deploy)
|
2
2
|
|
3
3
|
on:
|
4
4
|
push:
|
@@ -29,7 +29,7 @@ jobs:
|
|
29
29
|
GEM_HOST_API_KEY: ${{secrets.RUBYGEMS_API_KEY}}
|
30
30
|
- name: Get Gem Version
|
31
31
|
id: get-gem-version
|
32
|
-
run: echo "
|
32
|
+
run: echo "GEM_VERSION=$(bundle exec ruby -e 'puts Rulezilla::VERSION')" >> $GITHUB_OUTPUT
|
33
33
|
- name: Create Release
|
34
34
|
uses: actions/github-script@v6
|
35
35
|
env:
|
data/lib/rulezilla/dsl.rb
CHANGED
@@ -51,14 +51,14 @@ module Rulezilla
|
|
51
51
|
def apply(record = {})
|
52
52
|
result_node = trace(record).last
|
53
53
|
|
54
|
-
result_node
|
54
|
+
result_node&.result(record_klass_instance(record))
|
55
55
|
end
|
56
56
|
|
57
57
|
def all(record = {})
|
58
58
|
validate_missing_attributes(record)
|
59
59
|
result_node = tree.find_all(record_klass_instance(record))
|
60
60
|
|
61
|
-
result_node
|
61
|
+
result_node&.map { |node| node.result(record_klass_instance(record)) }
|
62
62
|
end
|
63
63
|
|
64
64
|
def results(record = nil)
|
data/lib/rulezilla/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.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: 2023-01-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|