-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimed_specs.gemspec
22 lines (19 loc) · 1.05 KB
/
timed_specs.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/timed_specs/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["dipil-saud"]
gem.email = ["[email protected]"]
gem.description = %q{
A Rspec formatter built upon the default DocumentationFormatter which shows the time taken for each example along with the other information shown by the DocumentationFormatter. You also have the option to list the slowest 'n' examples at the end.
}
gem.summary = %q{A rspec formatter which displays the individual time taken by each example and lists the slowest examples. }
gem.homepage = "https://github.com/dipil-saud/timed_specs"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "timed_specs"
gem.require_paths = ["lib"]
gem.version = VERSION
gem.add_runtime_dependency "rspec"
gem.add_development_dependency "pry"
end