-
-
Notifications
You must be signed in to change notification settings - Fork 92
/
cuprite.gemspec
29 lines (25 loc) · 1.09 KB
/
cuprite.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
# frozen_string_literal: true
require_relative "lib/capybara/cuprite/version"
Gem::Specification.new do |s|
s.name = "cuprite"
s.version = Capybara::Cuprite::VERSION
s.authors = ["Dmitry Vorotilin"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/rubycdp/cuprite"
s.summary = "Headless Chrome driver for Capybara"
s.description = "Cuprite is a driver for Capybara that allows you to " \
"run your tests on a headless Chrome browser"
s.license = "MIT"
s.require_paths = ["lib"]
s.files = Dir["lib/**/*", "LICENSE", "README.md"]
s.metadata = {
"homepage_uri" => "https://cuprite.rubycdp.com/",
"bug_tracker_uri" => "https://github.com/rubycdp/cuprite/issues",
"documentation_uri" => "https://github.com/rubycdp/cuprite/blob/main/README.md",
"source_code_uri" => "https://github.com/rubycdp/cuprite",
"rubygems_mfa_required" => "true"
}
s.required_ruby_version = ">= 2.7.0"
s.add_runtime_dependency "capybara", "~> 3.0"
s.add_runtime_dependency "ferrum", "~> 0.15.0"
end