--- !ruby/object:Gem::Specification name: qfill version: !ruby/object:Gem::Version version: 0.1.0 platform: ruby authors: - Peter Boling autorequire: bindir: bin cert_chain: [] date: 2021-04-22 00:00:00.000000000 Z dependencies: - !ruby/object:Gem::Dependency name: rake requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '13' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '13' - !ruby/object:Gem::Dependency name: rspec requirement: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3' type: :development prerelease: false version_requirements: !ruby/object:Gem::Requirement requirements: - - "~>" - !ruby/object:Gem::Version version: '3' description: Advanced Queue Transformation email: - peter.boling@gmail.com executables: [] extensions: [] extra_rdoc_files: [] files: - ".github/dependabot.yml" - ".github/workflows/style.yml" - ".github/workflows/test.yml" - ".gitignore" - ".rspec" - ".rubocop.yml" - ".rubocop_todo.yml" - ".simplecov" - CODE_OF_CONDUCT.md - Gemfile - Guardfile - LICENSE - README.md - Rakefile - lib/qfill.rb - lib/qfill/errors/invalid_index.rb - lib/qfill/filter.rb - lib/qfill/list.rb - lib/qfill/list_set.rb - lib/qfill/manager.rb - lib/qfill/origin.rb - lib/qfill/popper.rb - lib/qfill/pusher.rb - lib/qfill/result.rb - lib/qfill/strategy.rb - lib/qfill/strategy/base.rb - lib/qfill/strategy/drain_to_empty.rb - lib/qfill/strategy/drain_to_limit.rb - lib/qfill/strategy/sample.rb - lib/qfill/strategy/time_slice.rb - lib/qfill/version.rb - maintenance-branch - qfill.gemspec - spec/qfill/filter_spec.rb - spec/qfill/list_set_spec.rb - spec/qfill/list_spec.rb - spec/qfill/manager_spec.rb - spec/qfill/origin_spec.rb - spec/qfill/popper_spec.rb - spec/qfill/pusher_spec.rb - spec/qfill/result_spec.rb - spec/qfill_spec.rb - spec/spec_helper.rb - spec/support/helper.rb - spec/support/random_object.rb homepage: https://github.com/pboling/qfill licenses: [] metadata: {} post_install_message: rdoc_options: [] require_paths: - lib required_ruby_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' required_rubygems_version: !ruby/object:Gem::Requirement requirements: - - ">=" - !ruby/object:Gem::Version version: '0' requirements: [] rubygems_version: 3.2.9 signing_key: specification_version: 4 summary: 'You have a set of arrays that need to be turned into a different set of arrays according to a potentially non-uniform set of rules. Now you can easily turn this: source_a # => [1,2,3,4] source_b # => [5,6,7,8,9] into this: result_a # => [1,2] result_b # => [3,5,7,9] result_c # => [4,6,8] by specifying filters for handling each transformation.' test_files: - spec/qfill/filter_spec.rb - spec/qfill/list_set_spec.rb - spec/qfill/list_spec.rb - spec/qfill/manager_spec.rb - spec/qfill/origin_spec.rb - spec/qfill/popper_spec.rb - spec/qfill/pusher_spec.rb - spec/qfill/result_spec.rb - spec/qfill_spec.rb - spec/spec_helper.rb - spec/support/helper.rb - spec/support/random_object.rb