Sha256: c3502110547dc07b8ba9a493e97b7ab422e463014c27a5ac3f04baf55d277174
Contents?: true
Size: 701 Bytes
Versions: 1
Compression:
Stored size: 701 Bytes
Contents
module CollectionFilter class Undefined < BasicObject def self.filter_with(collection, block) new(collection, block) end def initialize(collection, block) @collection = collection @condition = block end def <<(object) filter_for(object).add(object, @collection) end def respond_to?(selector, include_private=false) @collection.respond_to?(selector, include_private) end private def filter_for(object) filters_provider.find_filter(object, @condition) end def filters_provider Base end def method_missing(selector, *args, &block) @collection.send(selector, *args, &block) end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
collection_filter-0.0.1 | lib/collection_filter/undefined.rb |