Sha256: 9227c766e21cf8bf5612e3252b42ce8f0131d08b2f973b290edf86608b81fc91

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

# frozen_string_literal: true

lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'qfill/version'

Gem::Specification.new do |gem|
  gem.name          = 'qfill'
  gem.version       = Qfill::VERSION
  gem.authors       = ['Peter Boling']
  gem.email         = ['peter.boling@gmail.com']
  gem.description   = 'Advanced Queue Transformation'
  gem.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.
'
  gem.homepage      = 'https://github.com/pboling/qfill'

  gem.files         = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
  gem.executables   = gem.files.grep(%r{^bin/}).map { |f| File.basename(f) }
  gem.test_files    = gem.files.grep(%r{^(test|spec|features)/})
  gem.require_paths = ['lib']

  gem.add_development_dependency 'rake', '~> 13'
  gem.add_development_dependency 'rspec', '~> 3'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
qfill-0.1.1 qfill.gemspec
qfill-0.1.0 qfill.gemspec