Sha256: 094960d3337d60fbf031d5d1375bcffd8b09e8c86088ee04206c0ae91398ae60
Contents?: true
Size: 1.03 KB
Versions: 5
Compression:
Stored size: 1.03 KB
Contents
# frozen_string_literal: true require 'active_set/version' require 'active_set/processors/filter_processor' require 'active_set/processors/sort_processor' require 'active_set/processors/paginate_processor' class ActiveSet include Enumerable attr_reader :set def initialize(set) @set = set end def each(&block) @set.each(&block) end def ==(other) return @set == other unless other.is_a?(ActiveSet) @set == other.set end def method_missing(method_name, *args, &block) @set.send(method_name, *args, &block) || super end def respond_to_missing?(method_name, include_private = false) @set.respond_to?(method_name) || super end def filter(instructions) filterer = FilterProcessor.new(@set, instructions) self.class.new(filterer.process) end def sort(instructions) sorter = SortProcessor.new(@set, instructions) self.class.new(sorter.process) end def paginate(instructions) paginater = PaginateProcessor.new(@set, instructions) self.class.new(paginater.process) end end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
activeset-0.4.4 | lib/active_set.rb |
activeset-0.4.3 | lib/active_set.rb |
activeset-0.4.2 | lib/active_set.rb |
activeset-0.4.1 | lib/active_set.rb |
activeset-0.4.0 | lib/active_set.rb |