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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7071d46fa08a057f2e84377d14b189283e1da174
4
- data.tar.gz: 1cf55b872fbc5b3722e5771d49a57100825c54ea
3
+ metadata.gz: d2a71ea4f4dfd474f0f3cfd66200b5a18e3e11c6
4
+ data.tar.gz: 38d96af1a26fceda20d4632a25c1200569f0e318
5
5
  SHA512:
6
- metadata.gz: 667d7fd888c3430b0427a102d8077730e547eef84b6032ee20b5a42eb280fa41141373740c0646a4f10e47c627a68493ad00469e38c796567f80bf7cbbff0a42
7
- data.tar.gz: 6c4f7be4bd51504bc0c6b89078a3f79bcaf46981ecaaf9d13ed1afef5983b4b1b5eeb1a1eeb237e48926cefdc2ffb910fe9b2ede2dde1e3255edec8041299cd0
6
+ metadata.gz: 53669f7428cb4bfdd60ef5e9740f0900fe782c9a6d04ca1b4fc57dc96c4e3f1644d5fc48ecb312a8a4590f8a8881f043f6a027f9f2a16f53f8bebdd829a6210b
7
+ data.tar.gz: 90d5c4650f33fb28aaff7918bb29ee7e91212b21210098c988ebeebe90f93db3515d5cbc280d4287ac032ac8bb9f9c3adf5b21adb37c0a040cebb634704116be
data/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ [![Gem Version](https://badge.fury.io/rb/with_anybar.svg)](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!
@@ -6,8 +6,17 @@ require "with_anybar"
6
6
 
7
7
  # Launch Anybar if not running
8
8
  current_user = `whoami`.strip
9
- unless system("open /Users/#{current_user}/Applications/AnyBar.app")
10
- fail "Could not launch Anybar app"
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 "Hit any key to end"
36
+ warn "Press Enter to end"
28
37
  $stdin.gets
29
38
  ensure
30
39
  Process.kill('QUIT', @blinker) if @blinker
@@ -1,3 +1,3 @@
1
1
  module WithAnybar
2
- VERSION = "0.1.0"
2
+ VERSION = "0.2.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: with_anybar
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Riaz Virani