-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathbenchmark-trend.gemspec
32 lines (27 loc) · 1.53 KB
/
benchmark-trend.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
30
31
32
require_relative "lib/benchmark/trend/version"
Gem::Specification.new do |spec|
spec.name = "benchmark-trend"
spec.version = Benchmark::Trend::VERSION
spec.authors = ["Piotr Murach"]
spec.email = ["piotr@piotrmurach.com"]
spec.summary = %q{Measure performance trends of Ruby code based on the input size distribution.}
spec.description = %q{Benchmark::Trend will help you estimate the computational complexity of Ruby code by running it on inputs increasing in size, measuring their execution times, and then fitting these observations into a model that best predicts how a given Ruby code will scale as a function of growing workload.}
spec.homepage = "https://github.com/piotrmurach/benchmark-trend"
spec.license = "MIT"
if spec.respond_to?(:metadata=)
spec.metadata = {
"allowed_push_host" => "https://rubygems.org",
"bug_tracker_uri" => "https://github.com/piotrmurach/benchmark-trend/issues",
"changelog_uri" => "https://github.com/piotrmurach/benchmark-trend/CHANGELOG.md",
"documentation_uri" => "https://www.rubydoc.info/gems/benchmark-trend",
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/piotrmurach/benchmark-trend"
}
end
spec.files = Dir["lib/**/*"]
spec.extra_rdoc_files = ["README.md", "CHANGELOG.md", "LICENSE.txt"]
spec.require_paths = ["lib"]
spec.required_ruby_version = ">= 2.0.0"
spec.add_development_dependency "rake"
spec.add_development_dependency "rspec", "~> 3.0"
end