-
Notifications
You must be signed in to change notification settings - Fork 6
/
benchmark-bigo.gemspec
28 lines (22 loc) · 993 Bytes
/
benchmark-bigo.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
26
27
28
# encoding: utf-8
require File.expand_path('../lib/benchmark/bigo/version', __FILE__)
Gem::Specification.new do |s|
s.name = 'benchmark-bigo'
s.version = Benchmark::BigO::VERSION
s.authors = ['Davy Stevenson']
s.email = ['[email protected]']
s.homepage = 'http://github.com/davy/benchmark-bigo'
s.licenses = ['MIT']
s.summary = 'Benchmark objects to help calculate Big O behavior'
s.description = 'Benchmark objects to help calculate Big O behavior'
s.require_paths = ['lib']
s.files = Dir['lib/**/*.rb'] | Dir['lib/**/templates/*.erb']
s.extra_rdoc_files = ['README.md']
s.rdoc_options = ['--main', 'README.md']
s.test_files = Dir['test/**/*.rb']
s.add_runtime_dependency 'benchmark-ips', '~> 2.0'
s.add_runtime_dependency 'chartkick', '~> 1.2'
s.add_development_dependency 'minitest', '~> 5.3'
s.add_development_dependency 'rdoc', '~> 4.0'
s.add_development_dependency 'rake', '~> 12.0'
end