eyemanager 0.5.0 → 0.6.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 +18 -1
- data/lib/eyemanager/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ca16f91542c4bc2706106aa80d812200deda6565
|
4
|
+
data.tar.gz: 672901801d3710c9cd01174cec07340f698362e9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e9eb810c1e5e54db9cee193621e33698f1a8a7226ed182d37b9e46459200a49965b995d40dff4ea31118f11e35efbe54d54bca8dcca44302109627cc8ec9882
|
7
|
+
data.tar.gz: 21074d5a035b20924c7cffcfbe76934fa74ee03aed4d4a3f6e9b4d0193ca7f6a50a1f85de450276fe07f03c03654b98c840f21b1c0f35e316af4f2ceecbb4442
|
data/README.md
CHANGED
@@ -67,9 +67,26 @@ If your process is within a `group` block, ensure to include the `group`:
|
|
67
67
|
EyeManager.stop application: 'test2', group: 'samples', process: 'sample'
|
68
68
|
```
|
69
69
|
|
70
|
+
### List Eye Apps
|
71
|
+
|
72
|
+
List the applications being monitored by Eye:
|
73
|
+
|
74
|
+
```ruby
|
75
|
+
EyeManager.list_apps
|
76
|
+
# -> ['app1', 'app2']
|
77
|
+
```
|
78
|
+
|
79
|
+
uses:
|
80
|
+
|
81
|
+
```bash
|
82
|
+
eye i -j
|
83
|
+
```
|
84
|
+
|
85
|
+
to extract the `applications` being currently monitored.
|
86
|
+
|
70
87
|
### Destroy
|
71
88
|
|
72
|
-
Stop Eye processes and
|
89
|
+
Stop Eye processes and quit Eye:
|
73
90
|
|
74
91
|
```ruby
|
75
92
|
EyeManager.destroy
|
data/lib/eyemanager/version.rb
CHANGED