-
-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3755075
commit 1a4b347
Showing
5 changed files
with
69 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# frozen_string_literal: true | ||
|
||
source 'https://rubygems.org' | ||
gemspec | ||
gemspec name: 'selenium-webdriver' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# frozen_string_literal: true | ||
|
||
# Licensed to the Software Freedom Conservancy (SFC) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The SFC licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
module Selenium | ||
module DevTools | ||
VERSION = '0.0.1.alpha' | ||
end # DevTools | ||
end # Selenium |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# frozen_string_literal: true | ||
|
||
root = __dir__ | ||
raise "cwd must be #{root} when reading gemspec" if root != Dir.pwd | ||
|
||
$LOAD_PATH.push(File.expand_path('lib', root)) | ||
require 'selenium/devtools/version' | ||
|
||
Gem::Specification.new do |s| | ||
s.name = 'selenium-devtools' | ||
s.version = Selenium::DevTools::VERSION | ||
|
||
s.authors = ['Alex Rodionov', 'Titus Fortner', 'Thomas Walpole'] | ||
s.email = ['p0deje@gmail.com', 'titusfortner@gmail.com', 'twalpole@gmail.com'] | ||
|
||
s.summary = 'DevTools Code for use with Selenium' | ||
s.description = <<-DESCRIPTION | ||
Selenium WebDriver now supports limited DevTools interactions. | ||
This project allows users to specify desired versioning. | ||
DESCRIPTION | ||
|
||
s.license = 'Apache-2.0' | ||
s.homepage = 'https://selenium.dev' | ||
s.metadata = { | ||
'changelog_uri' => 'https://github.com/SeleniumHQ/selenium/blob/trunk/rb/CHANGES', | ||
'source_code_uri' => 'https://github.com/SeleniumHQ/selenium/tree/trunk/rb' | ||
} | ||
|
||
s.required_rubygems_version = Gem::Requirement.new('> 1.3.1') if s.respond_to? :required_rubygems_version= | ||
s.required_ruby_version = Gem::Requirement.new('>= 2.5') | ||
|
||
s.files = Dir.glob('{lib/selenium/devtools}/**/*') | ||
s.require_paths = ["lib"] | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters