-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathdatastructures.gemspec
25 lines (21 loc) · 958 Bytes
/
datastructures.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require File.expand_path('../lib/datastructures/version', __FILE__)
Gem::Specification.new do |gem|
gem.name = 'datastructures'
gem.authors = [ "Richard Smith" ]
gem.email = "[email protected]"
gem.homepage = 'https://github.com/Blahah/datastructures'
gem.summary = %q{ useful data structures }
gem.description = %q{ useful data structures implemented in pure Ruby for my data structures challenge. }
gem.version = DataStructures::VERSION::STRING.dup
gem.license = 'MIT'
gem.files = Dir['Rakefile', '{lib,test}/**/*', 'README*', 'LICENSE*']
gem.require_paths = %w[ lib ]
gem.add_dependency 'rake'
gem.add_dependency 'bsearch'
gem.add_development_dependency 'turn'
gem.add_development_dependency 'simplecov'
gem.add_development_dependency 'shoulda'
gem.add_development_dependency 'coveralls', '~> 0.6.7'
end