chromate-rb 0.0.1.pre

Sign up to get free protection for your applications and to get access to all the features.
Binary file
Binary file
data/sig/chromate.rbs ADDED
@@ -0,0 +1,4 @@
1
+ module Chromate
2
+ VERSION: String
3
+ # See the writing guide of rbs: https://github.com/ruby/rbs#guides
4
+ end
metadata ADDED
@@ -0,0 +1,111 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: chromate-rb
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1.pre
5
+ platform: ruby
6
+ authors:
7
+ - Eth3rnit3
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2024-11-18 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: ffi
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: 1.17.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: 1.17.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: websocket-client-simple
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: 0.8.0
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: 0.8.0
41
+ description: Chromate is a Ruby library to control Google Chrome with the Chrome DevTools
42
+ Protocol.
43
+ email:
44
+ - eth3rnit3@gmail.com
45
+ executables: []
46
+ extensions: []
47
+ extra_rdoc_files: []
48
+ files:
49
+ - ".rspec"
50
+ - ".rubocop.yml"
51
+ - ".ruby-version"
52
+ - CHANGELOG.md
53
+ - CODE_OF_CONDUCT.md
54
+ - LICENSE.txt
55
+ - README.md
56
+ - Rakefile
57
+ - dockerfiles/Dockerfile
58
+ - dockerfiles/docker-entrypoint.sh
59
+ - docs/browser.md
60
+ - lib/chromate.rb
61
+ - lib/chromate/actions/dom.rb
62
+ - lib/chromate/actions/navigate.rb
63
+ - lib/chromate/actions/screenshot.rb
64
+ - lib/chromate/browser.rb
65
+ - lib/chromate/c_logger.rb
66
+ - lib/chromate/client.rb
67
+ - lib/chromate/configuration.rb
68
+ - lib/chromate/element.rb
69
+ - lib/chromate/elements/select.rb
70
+ - lib/chromate/exceptions.rb
71
+ - lib/chromate/hardwares.rb
72
+ - lib/chromate/hardwares/mouse_controller.rb
73
+ - lib/chromate/hardwares/mouses/linux_controller.rb
74
+ - lib/chromate/hardwares/mouses/mac_os_controller.rb
75
+ - lib/chromate/hardwares/mouses/virtual_controller.rb
76
+ - lib/chromate/helpers.rb
77
+ - lib/chromate/user_agent.rb
78
+ - lib/chromate/version.rb
79
+ - results/brotector.png
80
+ - results/cloudflare.png
81
+ - sig/chromate.rbs
82
+ homepage: http://github.com/Eth3rnit3/chromate
83
+ licenses:
84
+ - MIT
85
+ metadata:
86
+ allowed_push_host: https://rubygems.org
87
+ homepage_uri: http://github.com/Eth3rnit3/chromate
88
+ source_code_uri: https://github.com/Eth3rnit3/chromate
89
+ changelog_uri: https://github.com/Eth3rnit3/chromate/blob/main/CHANGELOG.md
90
+ rubygems_mfa_required: 'true'
91
+ post_install_message:
92
+ rdoc_options: []
93
+ require_paths:
94
+ - lib
95
+ required_ruby_version: !ruby/object:Gem::Requirement
96
+ requirements:
97
+ - - ">="
98
+ - !ruby/object:Gem::Version
99
+ version: 3.0.0
100
+ required_rubygems_version: !ruby/object:Gem::Requirement
101
+ requirements:
102
+ - - ">"
103
+ - !ruby/object:Gem::Version
104
+ version: 1.3.1
105
+ requirements: []
106
+ rubygems_version: 3.4.10
107
+ signing_key:
108
+ specification_version: 4
109
+ summary: Chromate is a Ruby library to control Google Chrome with the Chrome DevTools
110
+ Protocol.
111
+ test_files: []