-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsparse.gemspec
More file actions
20 lines (17 loc) · 989 Bytes
/
sparse.gemspec
File metadata and controls
20 lines (17 loc) · 989 Bytes
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 = ['bradcater@gmail.com']
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