-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: aguspe <agustin.pe94@gmail.com>
- Loading branch information
Showing
49 changed files
with
1,502 additions
and
29 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
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
target :lib do | ||
signature 'sig' # Signature directory | ||
check 'lib' # Directory name | ||
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
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,82 @@ | ||
--- | ||
sources: | ||
- type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
path: ".gem_rbs_collection" | ||
gems: | ||
- name: ast | ||
version: '2.4' | ||
source: | ||
type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
- name: base64 | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: cgi | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: json | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: logger | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: monitor | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: optparse | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: parallel | ||
version: '1.20' | ||
source: | ||
type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
- name: rack | ||
version: '2.2' | ||
source: | ||
type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
- name: rainbow | ||
version: '3.0' | ||
source: | ||
type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
- name: tempfile | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: uri | ||
version: '0' | ||
source: | ||
type: stdlib | ||
- name: yard | ||
version: '0.9' | ||
source: | ||
type: git | ||
name: ruby/gem_rbs_collection | ||
revision: 8149bc3fc0f720d935dc0592dc8886e03052f65f | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
repo_dir: gems | ||
gemfile_lock_path: Gemfile.lock |
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 @@ | ||
# Download sources | ||
sources: | ||
- type: git | ||
name: ruby/gem_rbs_collection | ||
remote: https://github.com/ruby/gem_rbs_collection.git | ||
revision: main | ||
repo_dir: gems | ||
|
||
# You can specify local directories as sources also. | ||
# - type: local | ||
# path: path/to/your/local/repository | ||
|
||
# A directory to install the downloaded RBSs | ||
path: .gem_rbs_collection | ||
|
||
gems: | ||
# Skip loading rbs gem's RBS. | ||
# It's unnecessary if you don't use rbs as a library. | ||
- name: rbs | ||
ignore: true | ||
- name: steep | ||
ignore: true | ||
- name: selenium-webdriver | ||
ignore: true |
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,5 @@ | ||
module Selenium | ||
module DevTools | ||
VERSION: String | ||
end | ||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
module Selenium | ||
module WebDriver | ||
class Point | ||
attr_reader x: Integer | ||
attr_reader y: Integer | ||
|
||
def initialize: (Integer x, Integer y) -> void | ||
end | ||
|
||
class Dimension | ||
attr_reader width: Integer | ||
attr_reader height: Integer | ||
|
||
def initialize: (Integer width, Integer height) -> void | ||
end | ||
|
||
class Rectangle | ||
attr_reader x: Integer | ||
attr_reader y: Integer | ||
attr_reader width: Integer | ||
attr_reader height: Integer | ||
|
||
def initialize: (Integer x, Integer y, Integer width, Integer height) -> void | ||
end | ||
|
||
@root: String | ||
|
||
def self.root: () -> String | ||
|
||
def self.for: (*String args) -> WebDriver::Driver | ||
|
||
def self.logger: (**String | Symbol opts) -> WebDriver::Logger | ||
end | ||
end |
Oops, something went wrong.