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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 8ae13fa13ff54e5b948035e9c41e0fd5b5bda057
4
- data.tar.gz: f5dbeb151daa73937ad14d38ddbeab8b1b5c9fa2
3
+ metadata.gz: 847b7fdf031e5f756f6ad1e35108d8b8a4af7b7f
4
+ data.tar.gz: 8c56f73c99e2decfef7ff9140dbf17b92b4a903d
5
5
  SHA512:
6
- metadata.gz: 553858a9ab227318be15aac89fc178b030dfd10a651a1f0776f49d2d042abb4605c82879746242e445b88a503f80e653d79d052b5c8746f8d6d261e2d5a995f2
7
- data.tar.gz: ce7341119a38f58b9e8f10e2f0c3f0021799ad5218acc8b8683a09886aa99bab2948c4034f91af190edf9c1cbfdf4d8ce4a59a0dce5250b737ca4c650c9ab0b9
6
+ metadata.gz: 4b8719741b4fe1b9ef0507bfd5831781a8861b165dd3c8b661bc8ef34e5a2bed2419abf7920fb5b3ba2fcd1f446aa9ab1b2d0d5f2261ae0a694dd79c0900cc39
7
+ data.tar.gz: 53f1fdc187a07af6394e1446562a3f12b8d7fada323db5c709378ab6aae0375bd84ff50f7a537eaac2b83f001bbd1a17375468c8ad5c018e459cd72590ed0a84
@@ -1,6 +1,6 @@
1
1
  # TerminalNotifier - Guard Style
2
2
 
3
- A simple Ruby wrapper around the [`terminal-notifier`][HOMEPAGE] command-line
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/Ruby/LICENSE
77
+ [LICENSE]: https://github.com/Springest/terminal-notifier-guard/blob/master/LICENSE
62
78
 
63
79
 
64
80
  ## Contributors & Thanks to
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  module TerminalNotifier
2
2
  module Guard
3
- VERSION = "1.6.1"
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.1
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-10-23 00:00:00.000000000 Z
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: []