autogui 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +20 -0
- data/LICENSE +29 -0
- data/README.md +431 -0
- data/bin/autogui +19 -0
- data/docs/api.md +186 -0
- data/docs/guide.md +243 -0
- data/docs/publishing.md +90 -0
- data/examples/hello.rb +20 -0
- data/examples/locate_demo.rb +16 -0
- data/lib/autogui/exceptions.rb +9 -0
- data/lib/autogui/geometry.rb +98 -0
- data/lib/autogui/image.rb +344 -0
- data/lib/autogui/keys.rb +50 -0
- data/lib/autogui/message_box.rb +125 -0
- data/lib/autogui/platform/darwin.rb +185 -0
- data/lib/autogui/platform/linux.rb +172 -0
- data/lib/autogui/platform/windows.rb +400 -0
- data/lib/autogui/platform.rb +41 -0
- data/lib/autogui/run.rb +168 -0
- data/lib/autogui/screenshot.rb +95 -0
- data/lib/autogui/tween.rb +254 -0
- data/lib/autogui/version.rb +5 -0
- data/lib/autogui/window.rb +170 -0
- data/lib/autogui.rb +738 -0
- metadata +90 -0
metadata
ADDED
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: autogui
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- pardeep2690
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies: []
|
|
12
|
+
description: |
|
|
13
|
+
AutoGUI controls the mouse and keyboard, takes screenshots, finds images on
|
|
14
|
+
the screen, shows message boxes, and inspects application windows. It is a
|
|
15
|
+
Ruby port of Python PyAutoGUI with snake_case methods and CamelCase aliases.
|
|
16
|
+
|
|
17
|
+
Windows talks to the Win32 API through Ruby's standard-library Fiddle
|
|
18
|
+
(no extra gems). macOS uses osascript and screencapture. Linux uses
|
|
19
|
+
xdotool plus scrot, ImageMagick, or grim.
|
|
20
|
+
|
|
21
|
+
Fail-safe: moving the cursor into a screen corner raises FailSafeException.
|
|
22
|
+
email:
|
|
23
|
+
- pardeep2690@users.noreply.github.com
|
|
24
|
+
executables:
|
|
25
|
+
- autogui
|
|
26
|
+
extensions: []
|
|
27
|
+
extra_rdoc_files:
|
|
28
|
+
- CHANGELOG.md
|
|
29
|
+
- LICENSE
|
|
30
|
+
- README.md
|
|
31
|
+
- docs/api.md
|
|
32
|
+
- docs/guide.md
|
|
33
|
+
files:
|
|
34
|
+
- CHANGELOG.md
|
|
35
|
+
- LICENSE
|
|
36
|
+
- README.md
|
|
37
|
+
- bin/autogui
|
|
38
|
+
- docs/api.md
|
|
39
|
+
- docs/guide.md
|
|
40
|
+
- docs/publishing.md
|
|
41
|
+
- examples/hello.rb
|
|
42
|
+
- examples/locate_demo.rb
|
|
43
|
+
- lib/autogui.rb
|
|
44
|
+
- lib/autogui/exceptions.rb
|
|
45
|
+
- lib/autogui/geometry.rb
|
|
46
|
+
- lib/autogui/image.rb
|
|
47
|
+
- lib/autogui/keys.rb
|
|
48
|
+
- lib/autogui/message_box.rb
|
|
49
|
+
- lib/autogui/platform.rb
|
|
50
|
+
- lib/autogui/platform/darwin.rb
|
|
51
|
+
- lib/autogui/platform/linux.rb
|
|
52
|
+
- lib/autogui/platform/windows.rb
|
|
53
|
+
- lib/autogui/run.rb
|
|
54
|
+
- lib/autogui/screenshot.rb
|
|
55
|
+
- lib/autogui/tween.rb
|
|
56
|
+
- lib/autogui/version.rb
|
|
57
|
+
- lib/autogui/window.rb
|
|
58
|
+
homepage: https://github.com/pardeep2690/autogui
|
|
59
|
+
licenses:
|
|
60
|
+
- BSD-3-Clause
|
|
61
|
+
metadata:
|
|
62
|
+
homepage_uri: https://github.com/pardeep2690/autogui
|
|
63
|
+
source_code_uri: https://github.com/pardeep2690/autogui
|
|
64
|
+
bug_tracker_uri: https://github.com/pardeep2690/autogui/issues
|
|
65
|
+
changelog_uri: https://github.com/pardeep2690/autogui/blob/main/CHANGELOG.md
|
|
66
|
+
documentation_uri: https://github.com/pardeep2690/autogui#readme
|
|
67
|
+
allowed_push_host: https://rubygems.org
|
|
68
|
+
rubygems_mfa_required: 'true'
|
|
69
|
+
rdoc_options:
|
|
70
|
+
- "--main"
|
|
71
|
+
- README.md
|
|
72
|
+
- "--title"
|
|
73
|
+
- AutoGUI
|
|
74
|
+
require_paths:
|
|
75
|
+
- lib
|
|
76
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
77
|
+
requirements:
|
|
78
|
+
- - ">="
|
|
79
|
+
- !ruby/object:Gem::Version
|
|
80
|
+
version: 2.7.0
|
|
81
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
82
|
+
requirements:
|
|
83
|
+
- - ">="
|
|
84
|
+
- !ruby/object:Gem::Version
|
|
85
|
+
version: '0'
|
|
86
|
+
requirements: []
|
|
87
|
+
rubygems_version: 3.6.9
|
|
88
|
+
specification_version: 4
|
|
89
|
+
summary: 'Ruby GUI automation: mouse, keyboard, screenshots, and image search'
|
|
90
|
+
test_files: []
|