-
Notifications
You must be signed in to change notification settings - Fork 0
/
sparse.gemspec
20 lines (17 loc) · 989 Bytes
/
sparse.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/sparse/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ['Brad Cater']
gem.email = ['[email protected]']
gem.description = %q{Provides a compact representation of sparse data structures}
gem.summary = %q{Provides a compact representation of sparse data structures. Only SpArray, the sparse Array, is implemented. By storing the sparse value, the size, and the (index, value) pairs that are not the sparse value, Sparse classes avoid storing redundant data.}
gem.homepage = ''
gem.files = `git ls-files`.split($\)
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
gem.name = 'sparse'
gem.require_paths = ['lib']
gem.version = Sparse::VERSION
gem.add_development_dependency 'rake', '~> 0.9.2'
gem.add_development_dependency 'rspec', '~> 2.11'
end