active_collection 0.2.5 → 0.2.6
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.
- data/VERSION.yml +1 -1
- data/active_collection.gemspec +1 -1
- data/lib/active_collection/base.rb +0 -1
- metadata +1 -1
data/VERSION.yml
CHANGED
data/active_collection.gemspec
CHANGED
@@ -104,7 +104,6 @@ module ActiveCollection
|
|
104
104
|
# Pass methods on to the collection.
|
105
105
|
def method_missing(method, *args)
|
106
106
|
if Array.method_defined?(method) && !Object.method_defined?(method)
|
107
|
-
raise "#{method} received with #{args.join(', ')}"
|
108
107
|
if block_given?
|
109
108
|
collection.send(method, *args) { |*block_args| yield(*block_args) }
|
110
109
|
else
|