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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5601b05cdf05d0510c1c6a1d6585ec39da2aaa948d312b7e891feb9d0dd0fa21
4
- data.tar.gz: c12b5c2e9d8af0c0369d2a81653efdf77006ea57ee273e765777ef5093e85a56
3
+ metadata.gz: d13fe746824b34ca73991a576d5e7df2b789f3b73ea74def254ef615529763da
4
+ data.tar.gz: ce3c26ada39119195f645c5cff6b5ccd5e0ff36d7a81bb597715af4b5e165e4e
5
5
  SHA512:
6
- metadata.gz: 9fc36cd368f5f0a524d633065985a892bcb2ce952c69286d4970ea3160ed1b8a99426a4dec3b02b4feef07311ff8cc9c32953454b15fa63b462a1102d55cd3fe
7
- data.tar.gz: afc66822523031ca85c81ec919929e777c9e0164bcb360fb7a19c4976634779e78443d378836c88fe88c95707a34f485dd7e6a15c7b57789b952eb74f0d4b135
6
+ metadata.gz: 88565fb81632f58a71fb8ec2122df174065182a892f6028404097174e94f92fcd741138195deae2fe28ca0721a93624a9c3b2da14eeb377fba4a47a99dd1af33
7
+ data.tar.gz: f44548dd63ded4d32a43d4962aaede4ff455d5c847fc0a7663da5b256e3e6c2e6fee970541ccfeb873f0e8bde48502cf4995a1e14ede66129c46a2f6323d28d7
data/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # Gui
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 add UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
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 UPDATE_WITH_YOUR_GEM_NAME_IMMEDIATELY_AFTER_RELEASE_TO_RUBYGEMS_ORG
16
+ gem install gui_inspect
17
17
  ```
18
18
 
19
19
  ## Usage
20
20
 
21
- > get_ui_elements '<application name>' >path/to/file # Generates a list of the GUI elements of the
22
- # application in its current state
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
 
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module GUIInspect
4
- VERSION = "0.2.0"
4
+ VERSION = "0.2.1"
5
5
 
6
6
  def self.version
7
7
  VERSION
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: gui_inspect
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Richard LeBer