-
Notifications
You must be signed in to change notification settings - Fork 2
/
benchmark-plot.gemspec
29 lines (23 loc) · 1.02 KB
/
benchmark-plot.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
29
# coding: utf-8
$:.unshift File.expand_path("../lib", __FILE__)
require 'benchmark/plot/version.rb'
Benchmark::Plot::DESCRIPTION = <<MSG
benchmark-plot is an extension to the Ruby standard benchmarking library.
It let's you easily create plots of any code that you want to benchmark over
a varied number of inputs. It also supports comparative benchmarking.
MSG
Gem::Specification.new do |spec|
spec.name = 'benchmark-plot'
spec.version = Benchmark::Plot::VERSION
spec.authors = ['Sameer Deshmukh']
spec.email = ['[email protected]']
spec.summary = %q{benchmark-plot}
spec.description = Benchmark::Plot::DESCRIPTION
spec.homepage = "https://github.com/v0dro/benchmark-plot"
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_runtime_dependency 'gruff'
end