Sha256: af15b814dc1e4b157b2e2fbe4957867c8f28cf11f625212bac5260f92da5c1ed

Contents?: true

Size: 1.02 KB

Versions: 1

Compression:

Stored size: 1.02 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = "set_partition"
  spec.version       = SetPartition::VERSION
  spec.authors       = ["Teja Sophista V.R."]
  spec.email         = ["tejanium@yahoo.com"]
  spec.description   = "Set Partition"
  spec.summary       = "Ruby implementation of http://en.wikipedia.org/wiki/Partition_of_a_set based on paper Efficient Generation of Set Partitions by Michael Orlov <orlovm@cs.bgu.ac.il>"
  spec.homepage      = "http://github.com/tejanium/set_partition"
  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"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
set_partition-0.0.1 set_partition.gemspec