Sha256: e40817aa7c81ccc6bd035b4014ff1245ae107c62db26f73f6efc2c9b38a05da8

Contents?: true

Size: 1.04 KB

Versions: 4

Compression:

Stored size: 1.04 KB

Contents

# -*- encoding: utf-8 -*-
lib = File.expand_path('../lib', __FILE__)
$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   = %q{Advanced Queue Transformation}
  gem.summary       = %q{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      = ""

  gem.files         = `git ls-files`.split($/)
  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 'rspec'
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
qfill-0.0.4 qfill.gemspec
qfill-0.0.3 qfill.gemspec
qfill-0.0.2 qfill.gemspec
qfill-0.0.1 qfill.gemspec