activeset 0.7.0 → 0.7.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
  SHA1:
3
- metadata.gz: 4c88778d3e9cdb17bb755baad18eccf5a1ec41f1
4
- data.tar.gz: 25b78baf469767293cf301fd3589a00a5a0c9b94
3
+ metadata.gz: 2d87d34f54e2c174c5c11379a49ebd92d5f9b60c
4
+ data.tar.gz: 5053ea2083a2eec445a06320427008452318c803
5
5
  SHA512:
6
- metadata.gz: c8e848d5d4fde3130fec90980e8e0530db6612bf4e11663f0fdaf2d52c5f60e319bd162674a5fd298fa71249f15dfa15fda1320917c160487ba0485461a527b1
7
- data.tar.gz: 6f695aa0590f3a8ead38041bc94818ac6faaf0e3cd3c2b85b831593c6ec3a64a910fd37fc87ebfef9f3755434f4613cef88317e2f64e2f09fee9e1aa28995c13
6
+ metadata.gz: 78f7b3a62321ac056cb550185b09b9e8b333b2723e938f1f38ec4d8bcc48c709e92f0a9c53107b3f733965edfadebd4e3ed55be13577e25a3510f9eab5d7c4c3
7
+ data.tar.gz: c286846a5e54c850bc352d2c03f916e2048e4cbd03c69704fa7fa55dcd7bfb744212448c9744997d56da74c6c5ba3ff8d2ec851644ef224e58526662a0f70f34
data/CHANGELOG CHANGED
@@ -1,3 +1,5 @@
1
+ v 0.7.1
2
+ - Fix a small bug with Enumberable filtering of metaprogrammatically defined getter methods
1
3
  v 0.7.0
2
4
  - another rewrite from the ground up
3
5
  - allow each operation to exist and function in its own way and in its own context
data/activeset.gemspec CHANGED
@@ -6,7 +6,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
6
6
  Gem::Specification.new do |spec|
7
7
  spec.platform = Gem::Platform::RUBY
8
8
  spec.name = 'activeset'
9
- spec.version = '0.7.0'
9
+ spec.version = '0.7.1'
10
10
  spec.authors = ['Stephen Margheim']
11
11
  spec.email = ['stephen.margheim@gmail.com']
12
12
 
@@ -63,7 +63,7 @@ class ActiveSet
63
63
 
64
64
  return false unless attribute_item
65
65
  return false unless attribute_item.respond_to?(@attribute_instruction.attribute)
66
- return false unless attribute_item.method(@attribute_instruction.attribute).arity.zero?
66
+ return false if attribute_item.method(@attribute_instruction.attribute).arity > 0
67
67
 
68
68
  true
69
69
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: activeset
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.7.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Stephen Margheim