activeset 0.7.0 → 0.7.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG +2 -0
- data/activeset.gemspec +1 -1
- data/lib/active_set/filtering/operation.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2d87d34f54e2c174c5c11379a49ebd92d5f9b60c
|
4
|
+
data.tar.gz: 5053ea2083a2eec445a06320427008452318c803
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 78f7b3a62321ac056cb550185b09b9e8b333b2723e938f1f38ec4d8bcc48c709e92f0a9c53107b3f733965edfadebd4e3ed55be13577e25a3510f9eab5d7c4c3
|
7
|
+
data.tar.gz: c286846a5e54c850bc352d2c03f916e2048e4cbd03c69704fa7fa55dcd7bfb744212448c9744997d56da74c6c5ba3ff8d2ec851644ef224e58526662a0f70f34
|
data/CHANGELOG
CHANGED
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.
|
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
|
66
|
+
return false if attribute_item.method(@attribute_instruction.attribute).arity > 0
|
67
67
|
|
68
68
|
true
|
69
69
|
end
|