terminal-notifier-guard 1.6.1 → 1.6.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.markdown +18 -2
- data/icons/Failed.icns +0 -0
- data/icons/Notify.icns +0 -0
- data/icons/Pending.icns +0 -0
- data/icons/Success.icns +0 -0
- data/icons/guard.png +0 -0
- data/lib/terminal-notifier-guard.rb +1 -1
- metadata +7 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 847b7fdf031e5f756f6ad1e35108d8b8a4af7b7f
|
4
|
+
data.tar.gz: 8c56f73c99e2decfef7ff9140dbf17b92b4a903d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4b8719741b4fe1b9ef0507bfd5831781a8861b165dd3c8b661bc8ef34e5a2bed2419abf7920fb5b3ba2fcd1f446aa9ab1b2d0d5f2261ae0a694dd79c0900cc39
|
7
|
+
data.tar.gz: 53f1fdc187a07af6394e1446562a3f12b8d7fada323db5c709378ab6aae0375bd84ff50f7a537eaac2b83f001bbd1a17375468c8ad5c018e459cd72590ed0a84
|
data/README.markdown
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
# TerminalNotifier - Guard Style
|
2
2
|
|
3
|
-
A simple Ruby wrapper around the [`terminal-notifier`]
|
3
|
+
A simple Ruby wrapper around the [`terminal-notifier`](https://github.com/alloy/terminal-notifier) command-line
|
4
4
|
tool, which allows you to send User Notifications to the Notification Center on
|
5
5
|
Mac OS X 10.8, or higher.
|
6
6
|
|
@@ -15,10 +15,26 @@ This version has 4 different icons included for each status that
|
|
15
15
|
|
16
16
|
## Installation
|
17
17
|
|
18
|
+
This version depends on the official [`terminal-notifier`](https://github.com/alloy/terminal-notifier).
|
19
|
+
Install it with [Homebrew](http://brew.sh/) or see the official
|
20
|
+
[Installation instructions](https://github.com/alloy/terminal-notifier#download).
|
21
|
+
|
22
|
+
```
|
23
|
+
$ brew install terminal-notifier
|
24
|
+
```
|
25
|
+
|
26
|
+
Then, install the gem
|
27
|
+
|
18
28
|
```
|
19
29
|
$ gem install terminal-notifier-guard
|
20
30
|
```
|
21
31
|
|
32
|
+
Or add it to your Gemfile:
|
33
|
+
|
34
|
+
```
|
35
|
+
$ gem 'terminal-notifier-guard', '~> 1.6.1'
|
36
|
+
```
|
37
|
+
|
22
38
|
### OSX 10.8 users
|
23
39
|
|
24
40
|
As of version `1.6.1`, we no longer bundle notifiers binaries in this gem. Please revert to
|
@@ -58,7 +74,7 @@ See [LICENSE][LICENSE] for details.
|
|
58
74
|
|
59
75
|
[HOMEPAGE]: https://github.com/Springest/terminal-notifier-guard
|
60
76
|
[GUARD]: https://github.com/guard/guard
|
61
|
-
[LICENSE]: https://github.com/Springest/terminal-notifier-guard/blob/master/
|
77
|
+
[LICENSE]: https://github.com/Springest/terminal-notifier-guard/blob/master/LICENSE
|
62
78
|
|
63
79
|
|
64
80
|
## Contributors & Thanks to
|
data/icons/Failed.icns
ADDED
Binary file
|
data/icons/Notify.icns
ADDED
Binary file
|
data/icons/Pending.icns
ADDED
Binary file
|
data/icons/Success.icns
ADDED
Binary file
|
data/icons/guard.png
ADDED
Binary file
|
@@ -1,6 +1,6 @@
|
|
1
1
|
module TerminalNotifier
|
2
2
|
module Guard
|
3
|
-
VERSION = "1.6.
|
3
|
+
VERSION = "1.6.2"
|
4
4
|
BIN_PATH = "/usr/local/Cellar/terminal-notifier/1.6.1/terminal-notifier.app/Contents/MacOS/terminal-notifier"
|
5
5
|
ICONS_PATH = File.expand_path("../../icons", __FILE__)
|
6
6
|
GUARD_ICON = File.join(ICONS_PATH, 'guard.png')
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: terminal-notifier-guard
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.6.
|
4
|
+
version: 1.6.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Eloy Duran
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2014-
|
12
|
+
date: 2014-11-02 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: rake
|
@@ -76,6 +76,11 @@ extra_rdoc_files:
|
|
76
76
|
- README.markdown
|
77
77
|
files:
|
78
78
|
- README.markdown
|
79
|
+
- icons/Failed.icns
|
80
|
+
- icons/Notify.icns
|
81
|
+
- icons/Pending.icns
|
82
|
+
- icons/Success.icns
|
83
|
+
- icons/guard.png
|
79
84
|
- lib/terminal-notifier-guard.rb
|
80
85
|
homepage: https://github.com/Springest/terminal-notifier-guard
|
81
86
|
licenses: []
|