gui_inspect 0.2.0 → 0.2.1
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 +4 -4
- data/README.md +7 -5
- data/lib/gui_inspect/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d13fe746824b34ca73991a576d5e7df2b789f3b73ea74def254ef615529763da
|
4
|
+
data.tar.gz: ce3c26ada39119195f645c5cff6b5ccd5e0ff36d7a81bb597715af4b5e165e4e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 88565fb81632f58a71fb8ec2122df174065182a892f6028404097174e94f92fcd741138195deae2fe28ca0721a93624a9c3b2da14eeb377fba4a47a99dd1af33
|
7
|
+
data.tar.gz: f44548dd63ded4d32a43d4962aaede4ff455d5c847fc0a7663da5b256e3e6c2e6fee970541ccfeb873f0e8bde48502cf4995a1e14ede66129c46a2f6323d28d7
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
#
|
1
|
+
# GUI Inspect
|
2
2
|
|
3
3
|
Simple methods to inspect the GUI elements of a running MacOS application.
|
4
4
|
|
@@ -7,19 +7,21 @@ Simple methods to inspect the GUI elements of a running MacOS application.
|
|
7
7
|
Install the gem and add to the application's Gemfile by executing:
|
8
8
|
|
9
9
|
```bash
|
10
|
-
bundle
|
10
|
+
bundle gui_inspect
|
11
11
|
```
|
12
12
|
|
13
13
|
If bundler is not being used to manage dependencies, install the gem by executing:
|
14
14
|
|
15
15
|
```bash
|
16
|
-
gem install
|
16
|
+
gem install gui_inspect
|
17
17
|
```
|
18
18
|
|
19
19
|
## Usage
|
20
20
|
|
21
|
-
>
|
22
|
-
|
21
|
+
> gui_inspect processes # Generates a list of current active processes
|
22
|
+
|
23
|
+
> gui_inspect elements '<application name>' >path/to/file # Generates a list of the GUI elements of
|
24
|
+
# this application in its current state
|
23
25
|
|
24
26
|
## Development
|
25
27
|
|
data/lib/gui_inspect/version.rb
CHANGED