Sha256: 12532667d5ab6191fc76316076139ffc6df64fb6a5b87f7eebd259194dada262

Contents?: true

Size: 1.3 KB

Versions: 2

Compression:

Stored size: 1.3 KB

Contents

# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'setfu/version'

Gem::Specification.new do |spec|
  spec.name          = "setfu"
  spec.version       = Setfu::VERSION
  spec.authors       = ["Bryan Colvin"]
  spec.email         = ["bryan@bdlsys.com"]
  spec.description   = %q{
Creates a Set class with methods that allow you to construct and opperate on
set instances. A 'Bignum' instance is used internally to store each element
of the set. This allows very fast operations when comparing two set instances.
Member elements can be represented as positive small integers, or characters.
Sets can be constructed with integers, strings, characters, ranges, and arrays.
When characters are used, the ordinate value sets the element bit of the internal Bignum.}
  spec.summary       = %q{Set class}
  spec.homepage      = ""
  spec.license       = "MIT"

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

  spec.add_development_dependency "bundler", "~> 1.3"
  spec.add_development_dependency "rake"
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'byebug'
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
setfu-1.0.1 setfu.gemspec
setfu-1.0.0 setfu.gemspec