buzz_logic 1.0.0 → 1.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: cc4c70ca95e3e3e8eed36b92f72f2668f7b5c05a1b0599b930e8caa84983bbd4
4
- data.tar.gz: e073cd8be81197b5c3f418e0b6a2abaada5c8b3f665268c86e150a65aaed23a9
3
+ metadata.gz: 3da16ad99e4f0c1397f3b5c45a44f731de0960c116a570f663f2973f0c3c59a5
4
+ data.tar.gz: aa46c98615ed142bf4aa5bdc1b38c46f4b27c245c00a9179384749be9891f1d9
5
5
  SHA512:
6
- metadata.gz: 1ec7200ccb43f8fa26c63b30eb2ca5350d27c7308a7ab0bf9d0b15e829398d4bd1bbc8bfbd22d62f4c26b8ac6ef50f433df08e3c02ea35422f3e4d331b4be954
7
- data.tar.gz: d753ba2cafb0636f904a6930d178de911794c9a14b0ba8c9e94fb2fd8b49c0a6235e27e0a161053f74c52028da5b21501d3060714928152105e144d93988cc4b
6
+ metadata.gz: 41d08fbf2626a6edf9453834dc4e15bdb850a6b119a5cfe113cff15a86d79c6f9b8fc30269641edcde352729cae4c8e8de982c1d797568be6dd9ef576e0a292f
7
+ data.tar.gz: 73df6268dbbd07a415ce59d2c6c0f80a860c14d532065af1fd66737346ff374a633dc0325e2a469e463914e62a51639094d1d4c2b30b24916ea5fdcb081e4d23
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Buzz Logic - Change Log
2
2
 
3
+ ## [1.0.1] - 2025-06-16
4
+
5
+ - Fix: Ignore method arity
6
+
3
7
  ## [1.0.0] - 2025-06-16
4
8
 
5
9
  - First version of BuzzLogic, extracted from FutureFund.
@@ -147,11 +147,7 @@ module BuzzLogic
147
147
 
148
148
  if object.respond_to?(attribute)
149
149
  method = object.method(attribute)
150
- if method.arity == 0
151
- return method.call
152
- else
153
- raise EvaluationError, "Access to method '#{attribute}' with arguments is not allowed."
154
- end
150
+ return method.call
155
151
  end
156
152
 
157
153
  raise EvaluationError, "Cannot access '#{attribute}' on object of type #{object.class}"
@@ -1,3 +1,3 @@
1
1
  module BuzzLogic
2
- VERSION = "1.0.0"
2
+ VERSION = "1.0.1"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buzz_logic
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.0
4
+ version: 1.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Darian Shimy
@@ -32,6 +32,7 @@ licenses:
32
32
  - MIT
33
33
  metadata:
34
34
  allowed_push_host: https://rubygems.org
35
+ rubygems_mfa_required: 'true'
35
36
  homepage_uri: https://github.com/futurefund/buzz_logic
36
37
  source_code_uri: https://github.com/futurefund/buzz_logic
37
38
  changelog_uri: https://github.com/FutureFund/buzz_logic/CHANGELOG.md