-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcapybara-timeout_reporter.gemspec
More file actions
23 lines (19 loc) · 978 Bytes
/
Copy pathcapybara-timeout_reporter.gemspec
File metadata and controls
23 lines (19 loc) · 978 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# coding: utf-8
Gem::Specification.new do |spec|
spec.name = "capybara-timeout_reporter"
spec.version = "0.2.2"
spec.authors = ["Vitalii Grygoruk"]
spec.email = ["vitaliy[dot]grigoruk[at]gmail[dot]com"]
spec.summary = %q{Detecting and reporting capybara sync timeouts}
spec.description = %q{Allows you to execute a block or raise a warning if you use a finder that reaches capybara's timeout.}
spec.homepage = "https://github.com/vgrigoruk/capybara-timeout_reporter"
spec.license = "MIT"
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.required_ruby_version = ">= 1.9.3"
spec.add_development_dependency "bundler", "~> 1.7"
spec.add_development_dependency "rake", "~> 10.0"
spec.add_dependency "capybara", "~> 2.0"
end