Sha256: 3b556344236e9b354366dac3edbb7fd1005210b49a6063b85ebde43e4fcf0a9d
Contents?: true
Size: 1.07 KB
Versions: 1
Compression:
Stored size: 1.07 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. It aims to be the preferred data storage library for all Ruby gems, promoting interoperability and easy of use between various ruby packages. 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 'rspec', '~> 3.0' spec.add_development_dependency 'nmatrix', '~> 0.1.0.rc5' end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
daru-0.0.1 | daru.gemspec |