with_anybar 0.1.0 → 0.2.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 +4 -4
- data/README.md +2 -0
- data/bin/with_anybar +12 -3
- data/lib/with_anybar/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: d2a71ea4f4dfd474f0f3cfd66200b5a18e3e11c6
|
4
|
+
data.tar.gz: 38d96af1a26fceda20d4632a25c1200569f0e318
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 53669f7428cb4bfdd60ef5e9740f0900fe782c9a6d04ca1b4fc57dc96c4e3f1644d5fc48ecb312a8a4590f8a8881f043f6a027f9f2a16f53f8bebdd829a6210b
|
7
|
+
data.tar.gz: 90d5c4650f33fb28aaff7918bb29ee7e91212b21210098c988ebeebe90f93db3515d5cbc280d4287ac032ac8bb9f9c3adf5b21adb37c0a040cebb634704116be
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
[](http://badge.fury.io/rb/with_anybar)
|
2
|
+
|
1
3
|
# with_anybar
|
2
4
|
|
3
5
|
With_anybar is a simple gem that uses [AnyBar](https://github.com/tonsky/AnyBar) as a notification system for a long running command line command. For example, you may need to execute a long build process or script that sometimes may error. Rather than manually checking the status of that command, you can see whether it's complete via AnyBar!
|
data/bin/with_anybar
CHANGED
@@ -6,8 +6,17 @@ require "with_anybar"
|
|
6
6
|
|
7
7
|
# Launch Anybar if not running
|
8
8
|
current_user = `whoami`.strip
|
9
|
-
|
10
|
-
|
9
|
+
|
10
|
+
if Dir.exist?("/Users/#{current_user}/Applications/AnyBar.app")
|
11
|
+
unless system("open /Users/#{current_user}/Applications/AnyBar.app")
|
12
|
+
fail "Could not launch Anybar app"
|
13
|
+
end
|
14
|
+
elsif Dir.exist?("/Applications/AnyBar.app")
|
15
|
+
unless system("open /Applications/AnyBar.app")
|
16
|
+
fail "Could not launch Anybar app"
|
17
|
+
end
|
18
|
+
else
|
19
|
+
fail "Could not find AnyBar app"
|
11
20
|
end
|
12
21
|
|
13
22
|
# Clear Anybar status
|
@@ -24,7 +33,7 @@ begin
|
|
24
33
|
warn "Your job died a miserable death!"
|
25
34
|
end
|
26
35
|
|
27
|
-
warn "
|
36
|
+
warn "Press Enter to end"
|
28
37
|
$stdin.gets
|
29
38
|
ensure
|
30
39
|
Process.kill('QUIT', @blinker) if @blinker
|
data/lib/with_anybar/version.rb
CHANGED