forked from rubycdp/ferrum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ferrum.gemspec
32 lines (28 loc) · 1.25 KB
/
ferrum.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
# frozen_string_literal: true
require_relative "lib/ferrum/version"
Gem::Specification.new do |s|
s.name = "ferrum"
s.version = Ferrum::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Dmitry Vorotilin"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/rubycdp/ferrum"
s.summary = "Ruby headless Chrome driver"
s.description = "Ferrum allows you to control headless Chrome browser"
s.license = "MIT"
s.require_paths = ["lib"]
s.files = Dir["lib/**/*", "LICENSE", "README.md"]
s.metadata = {
"homepage_uri" => "https://ferrum.rubycdp.com/",
"bug_tracker_uri" => "https://github.com/rubycdp/ferrum/issues",
"documentation_uri" => "https://github.com/rubycdp/ferrum/blob/main/README.md",
"changelog_uri" => "https://github.com/rubycdp/ferrum/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/rubycdp/ferrum",
"rubygems_mfa_required" => "true"
}
s.required_ruby_version = ">= 2.6.0"
s.add_runtime_dependency "addressable", "~> 2.5"
s.add_runtime_dependency "concurrent-ruby", "~> 1.1"
s.add_runtime_dependency "webrick", "~> 1.7"
s.add_runtime_dependency "websocket-driver", ">= 0.6", "< 0.8"
end