Sha256: 141e5d4c443a4398e028a91521e9f49036db4d69c99ca2af46fa0021415be0cf

Contents?: true

Size: 1.07 KB

Versions: 1

Compression:

Stored size: 1.07 KB

Contents

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

Gem::Specification.new do |spec|
  spec.name          = 'statistical_array'
  spec.version       = StatisticalArray::VERSION
  spec.authors       = ['Todd A. Jacobs']
  spec.email         = ["github.projects@codegnome.org"]
  spec.summary       = %q{Generate statistics from a custom array object.}
  spec.description   = "Perform statistical analysis on a custom array class " +
                       "that doesn't actually inherit from Array. Provides a " +
                       "template system for flexible output."
  spec.homepage      = "https://github.com/CodeGnome/#{spec.name}"
  spec.license       = 'GPLv3'

  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'
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
statistical_array-1.0.0 statistical_array.gemspec