with_anybar 0.1.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 +7 -0
- data/.gitignore +19 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/LICENSE +22 -0
- data/README.md +30 -0
- data/Rakefile +1 -0
- data/bin/with_anybar +32 -0
- data/lib/with_anybar.rb +27 -0
- data/lib/with_anybar/version.rb +3 -0
- data/with_anybar.gemspec +22 -0
- metadata +82 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 7071d46fa08a057f2e84377d14b189283e1da174
|
4
|
+
data.tar.gz: 1cf55b872fbc5b3722e5771d49a57100825c54ea
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: 667d7fd888c3430b0427a102d8077730e547eef84b6032ee20b5a42eb280fa41141373740c0646a4f10e47c627a68493ad00469e38c796567f80bf7cbbff0a42
|
7
|
+
data.tar.gz: 6c4f7be4bd51504bc0c6b89078a3f79bcaf46981ecaaf9d13ed1afef5983b4b1b5eeb1a1eeb237e48926cefdc2ffb910fe9b2ede2dde1e3255edec8041299cd0
|
data/.gitignore
ADDED
data/.ruby-version
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
ruby-2.2.2
|
data/Gemfile
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright (c) 2015 Riaz Virani
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
7
|
+
in the Software without restriction, including without limitation the rights
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
10
|
+
furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
13
|
+
copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
SOFTWARE.
|
22
|
+
|
data/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# with_anybar
|
2
|
+
|
3
|
+
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!
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Install AnyBar
|
8
|
+
|
9
|
+
$ brew cask install anybar
|
10
|
+
|
11
|
+
Install the with_anybar gem
|
12
|
+
|
13
|
+
$ gem install with_anybar
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
Call any command on your terminal using with_anybar
|
18
|
+
|
19
|
+
$ with_anybar say "Your AnyBar should turn orange before turning green right now"
|
20
|
+
|
21
|
+
While the command is running, your AnyBar will turn **ORANGE**
|
22
|
+
|
23
|
+
If the command succeeds, your AnyBar will turn **GREEN**
|
24
|
+
|
25
|
+
If the command fails, your AnyBar will turn **RED**
|
26
|
+
|
27
|
+
If you are running multiple instances of AnyBar or not running it on the standard port (1738), you can set the
|
28
|
+
`ANYBAR_PORT` environment variable on run.
|
29
|
+
|
30
|
+
$ ANYBAR_PORT=1739 with_anybar say "Your AnyBar should turn orange before turning green right now"
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
data/bin/with_anybar
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require "with_anybar"
|
3
|
+
|
4
|
+
# Get arguments afterward and concatenate to string
|
5
|
+
@command = ARGV.join(" ")
|
6
|
+
|
7
|
+
# Launch Anybar if not running
|
8
|
+
current_user = `whoami`.strip
|
9
|
+
unless system("open /Users/#{current_user}/Applications/AnyBar.app")
|
10
|
+
fail "Could not launch Anybar app"
|
11
|
+
end
|
12
|
+
|
13
|
+
# Clear Anybar status
|
14
|
+
warn "Getting to Work"
|
15
|
+
WithAnybar.change_color("orange")
|
16
|
+
|
17
|
+
# Run as system call
|
18
|
+
begin
|
19
|
+
if system(@command)
|
20
|
+
@blinker = WithAnybar.blink("green")
|
21
|
+
warn "Boom! Done."
|
22
|
+
else
|
23
|
+
@blinker = WithAnybar.blink("red")
|
24
|
+
warn "Your job died a miserable death!"
|
25
|
+
end
|
26
|
+
|
27
|
+
warn "Hit any key to end"
|
28
|
+
$stdin.gets
|
29
|
+
ensure
|
30
|
+
Process.kill('QUIT', @blinker) if @blinker
|
31
|
+
WithAnybar.clear_color
|
32
|
+
end
|
data/lib/with_anybar.rb
ADDED
@@ -0,0 +1,27 @@
|
|
1
|
+
require "with_anybar/version"
|
2
|
+
|
3
|
+
module WithAnybar
|
4
|
+
require 'socket'
|
5
|
+
|
6
|
+
def self.change_color(color)
|
7
|
+
any_bar = UDPSocket.new
|
8
|
+
any_bar.connect "localhost", ENV["ANYBAR_PORT"] || 1738
|
9
|
+
any_bar.send color, 0
|
10
|
+
any_bar.close
|
11
|
+
end
|
12
|
+
|
13
|
+
def self.clear_color
|
14
|
+
change_color("white")
|
15
|
+
end
|
16
|
+
|
17
|
+
def self.blink(color)
|
18
|
+
fork do
|
19
|
+
while true do
|
20
|
+
change_color(color)
|
21
|
+
sleep(0.6)
|
22
|
+
clear_color
|
23
|
+
sleep(0.6)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
data/with_anybar.gemspec
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'with_anybar/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "with_anybar"
|
8
|
+
spec.version = WithAnybar::VERSION
|
9
|
+
spec.authors = ["Riaz Virani"]
|
10
|
+
spec.email = ["riaz.n.virani@gmail.com"]
|
11
|
+
|
12
|
+
spec.summary = %q{Track status of a bash command in anybar}
|
13
|
+
spec.homepage = "https://github.com/rvirani1/with_anybar"
|
14
|
+
|
15
|
+
spec.files = `git ls-files -z`.split("\x0")
|
16
|
+
spec.bindir = "bin"
|
17
|
+
spec.executables = ["with_anybar"]
|
18
|
+
spec.require_paths = ["lib"]
|
19
|
+
|
20
|
+
spec.add_development_dependency "bundler", "~> 1.9"
|
21
|
+
spec.add_development_dependency "rake", "~> 10.0"
|
22
|
+
end
|
metadata
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: with_anybar
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Riaz Virani
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2015-07-09 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.9'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.9'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
description:
|
42
|
+
email:
|
43
|
+
- riaz.n.virani@gmail.com
|
44
|
+
executables:
|
45
|
+
- with_anybar
|
46
|
+
extensions: []
|
47
|
+
extra_rdoc_files: []
|
48
|
+
files:
|
49
|
+
- ".gitignore"
|
50
|
+
- ".ruby-version"
|
51
|
+
- Gemfile
|
52
|
+
- LICENSE
|
53
|
+
- README.md
|
54
|
+
- Rakefile
|
55
|
+
- bin/with_anybar
|
56
|
+
- lib/with_anybar.rb
|
57
|
+
- lib/with_anybar/version.rb
|
58
|
+
- with_anybar.gemspec
|
59
|
+
homepage: https://github.com/rvirani1/with_anybar
|
60
|
+
licenses: []
|
61
|
+
metadata: {}
|
62
|
+
post_install_message:
|
63
|
+
rdoc_options: []
|
64
|
+
require_paths:
|
65
|
+
- lib
|
66
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
67
|
+
requirements:
|
68
|
+
- - ">="
|
69
|
+
- !ruby/object:Gem::Version
|
70
|
+
version: '0'
|
71
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
72
|
+
requirements:
|
73
|
+
- - ">="
|
74
|
+
- !ruby/object:Gem::Version
|
75
|
+
version: '0'
|
76
|
+
requirements: []
|
77
|
+
rubyforge_project:
|
78
|
+
rubygems_version: 2.4.6
|
79
|
+
signing_key:
|
80
|
+
specification_version: 4
|
81
|
+
summary: Track status of a bash command in anybar
|
82
|
+
test_files: []
|