Sha256: 90924acb249ef550e5700f4162497406650b3019d0834a17dbf176ab24a56b69

Contents?: true

Size: 1.37 KB

Versions: 1

Compression:

Stored size: 1.37 KB

Contents

# coding: utf-8
$:.unshift File.expand_path("../lib", __FILE__)

require 'version.rb'

DESCRIPTION = <<MSG
Daru (Data Analysis in RUby) is a library for storage, analysis and manipulation
of data.

Daru works with Ruby arrays, NMatrix and MDArray, thus working seamlessly accross
ruby interpreters, at the same time providing speed for those who need it.

This library is under active development so NMatrix and MDArray support is
somewhat limited, but should be available soon!
MSG

Gem::Specification.new do |spec|
  spec.name          = 'daru'
  spec.version       = Daru::VERSION
  spec.authors       = ['Sameer Deshmukh']
  spec.email         = ['sameer.deshmukh93@gmail.com']
  spec.summary       = %q{Data Analysis in RUby}
  spec.description   = DESCRIPTION
  spec.homepage      = "http://github.com/v0dro/daru"
  spec.license       = 'BSD-2'

  spec.files         = `git ls-files -z`.split("\x0")
  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'
  spec.add_development_dependency 'rake'
  spec.add_development_dependency 'rspec'
  spec.add_development_dependency 'awesome_print'
  spec.add_development_dependency 'nyaplot'
  if RUBY_ENGINE != 'jruby'
    spec.add_development_dependency 'nmatrix', '~> 0.1.0.rc5'
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
daru-0.0.4 daru.gemspec