terminal-notifier-guard 1.4.2 → 1.5.3

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.
Files changed (36) hide show
  1. data/README.markdown +30 -17
  2. data/lib/terminal-notifier-guard.rb +1 -1
  3. data/lib/terminal_notifier/guard/version.rb +5 -0
  4. data/vendor/terminal-notifier-failed.app/Contents/Info.plist +52 -0
  5. data/vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier +0 -0
  6. data/vendor/terminal-notifier-failed.app/Contents/PkgInfo +1 -0
  7. data/vendor/terminal-notifier-failed.app/Contents/Resources/Failed.icns +0 -0
  8. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/Credits.rtf +29 -0
  9. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  10. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  11. data/vendor/terminal-notifier-failed.app/Contents/_CodeSignature/CodeResources +61 -0
  12. data/vendor/terminal-notifier-notify.app/Contents/Info.plist +52 -0
  13. data/vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier +0 -0
  14. data/vendor/terminal-notifier-notify.app/Contents/PkgInfo +1 -0
  15. data/vendor/terminal-notifier-notify.app/Contents/Resources/Notify.icns +0 -0
  16. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/Credits.rtf +29 -0
  17. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  18. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  19. data/vendor/terminal-notifier-notify.app/Contents/_CodeSignature/CodeResources +61 -0
  20. data/vendor/terminal-notifier-pending.app/Contents/Info.plist +52 -0
  21. data/vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier +0 -0
  22. data/vendor/terminal-notifier-pending.app/Contents/PkgInfo +1 -0
  23. data/vendor/terminal-notifier-pending.app/Contents/Resources/Pending.icns +0 -0
  24. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/Credits.rtf +29 -0
  25. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  26. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  27. data/vendor/terminal-notifier-pending.app/Contents/_CodeSignature/CodeResources +61 -0
  28. data/vendor/terminal-notifier-success.app/Contents/Info.plist +52 -0
  29. data/vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier +0 -0
  30. data/vendor/terminal-notifier-success.app/Contents/PkgInfo +1 -0
  31. data/vendor/terminal-notifier-success.app/Contents/Resources/Success.icns +0 -0
  32. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/Credits.rtf +29 -0
  33. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  34. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  35. data/vendor/terminal-notifier-success.app/Contents/_CodeSignature/CodeResources +61 -0
  36. metadata +36 -3
@@ -1,14 +1,24 @@
1
- # TerminalNotifier
1
+ # TerminalNotifier - Guard Style
2
2
 
3
3
  A simple Ruby wrapper around the [`terminal-notifier`][HOMEPAGE] 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
 
7
+ This version has 4 different `terminal-notifiers` included for each status that
8
+ [Guard][GUARD] supports:
9
+
10
+ 1. Failed
11
+ 2. Notify
12
+ 3. Pending
13
+ 4. Success
14
+
15
+ And each one with their own icon representing it's status.
16
+
7
17
 
8
18
  ## Installation
9
19
 
10
20
  ```
11
- $ gem install terminal-notifier
21
+ $ gem install terminal-notifier-guard
12
22
  ```
13
23
 
14
24
 
@@ -19,28 +29,31 @@ For full information on all the options, see the tool’s [README][README].
19
29
  Examples are:
20
30
 
21
31
  ```ruby
22
- TerminalNotifier.notify('Hello World')
23
- TerminalNotifier.notify('Hello World', :title => 'Ruby', :subtitle => 'Programming Language')
24
- TerminalNotifier.notify('Hello World', :activate => 'com.apple.Safari')
25
- TerminalNotifier.notify('Hello World', :open => 'http://twitter.com/alloy')
26
- TerminalNotifier.notify('Hello World', :execute => 'say "OMG"')
27
- TerminalNotifier.notify('Hello World', :group => Process.pid)
32
+ TerminalNotifier::Guard.notify('Hello World')
33
+ TerminalNotifier::Guard.notify('Hello World', :title => 'Ruby', :subtitle => 'Programming Language')
34
+ TerminalNotifier::Guard.notify('Hello World', :activate => 'com.apple.Safari')
35
+ TerminalNotifier::Guard.notify('Hello World', :open => 'http://twitter.com/alloy')
36
+ TerminalNotifier::Guard.notify('Hello World', :execute => 'say "OMG"')
37
+ TerminalNotifier::Guard.notify('Hello World', :group => Process.pid)
38
+
39
+ TerminalNotifier::Guard.remove(Process.pid)
28
40
 
29
- TerminalNotifier.remove(Process.pid)
41
+ TerminalNotifier::Guard.list(Process.pid)
42
+ TerminalNotifier::Guard.list
30
43
 
31
- TerminalNotifier.list(Process.pid)
32
- TerminalNotifier.list
44
+ TerminalNotifier::Guard.failed('This did not go well.')
45
+ TerminalNotifier::Guard.success('This did not go bad.')
46
+ TerminalNotifier::Guard.pending('This needs some work still')
33
47
  ```
34
48
 
35
49
 
36
50
  ## License
37
51
 
38
- All the works are available under the MIT license. **Except** for
39
- ‘Terminal.icns’, which is a copy of Apple’s Terminal.app icon and as such is
40
- copyright of Apple.
52
+ All the works are available under the MIT license.
41
53
 
42
54
  See [LICENSE][LICENSE] for details.
43
55
 
44
- [HOMEPAGE]: https://github.com/alloy/terminal-notifier
45
- [README]: https://github.com/alloy/terminal-notifier/blob/master/README.markdown
46
- [LICENSE]: https://github.com/alloy/terminal-notifier/blob/master/Ruby/LICENSE
56
+ [HOMEPAGE]: https://github.com/Springest/terminal-notifier-guard
57
+ [GUARD]: https://github.com/guard/guard
58
+ [README]: https://github.com/Springest/terminal-notifier-guard/blob/master/README.markdown
59
+ [LICENSE]: https://github.com/Springest/terminal-notifier-guard/blob/master/Ruby/LICENSE
@@ -1,4 +1,4 @@
1
- %w(failed notify pending success).each do |type|
1
+ %w(version failed notify pending success).each do |type|
2
2
  require File.expand_path("../terminal_notifier/guard/#{type}", __FILE__)
3
3
  end
4
4
 
@@ -0,0 +1,5 @@
1
+ module TerminalNotifier
2
+ module Guard
3
+ VERSION = '1.5.3'
4
+ end
5
+ end
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>BuildMachineOSBuild</key>
6
+ <string>12A269</string>
7
+ <key>CFBundleDevelopmentRegion</key>
8
+ <string>en</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>terminal-notifier</string>
11
+ <key>CFBundleIconFile</key>
12
+ <string>Failed</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>nl.superalloy.oss.failed.terminal-notifier</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>terminal-notifier</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>1.5.0</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>7</string>
27
+ <key>DTCompiler</key>
28
+ <string></string>
29
+ <key>DTPlatformBuild</key>
30
+ <string>4F1003</string>
31
+ <key>DTPlatformVersion</key>
32
+ <string>GM</string>
33
+ <key>DTSDKBuild</key>
34
+ <string>12A264</string>
35
+ <key>DTSDKName</key>
36
+ <string>macosx10.8</string>
37
+ <key>DTXcode</key>
38
+ <string>0441</string>
39
+ <key>DTXcodeBuild</key>
40
+ <string>4F1003</string>
41
+ <key>LSMinimumSystemVersion</key>
42
+ <string>10.8</string>
43
+ <key>LSUIElement</key>
44
+ <true/>
45
+ <key>NSHumanReadableCopyright</key>
46
+ <string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
47
+ <key>NSMainNibFile</key>
48
+ <string>MainMenu</string>
49
+ <key>NSPrincipalClass</key>
50
+ <string>NSApplication</string>
51
+ </dict>
52
+ </plist>
@@ -0,0 +1,29 @@
1
+ {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2
+ {\colortbl;\red255\green255\blue255;}
3
+ \paperw9840\paperh8400
4
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5
+
6
+ \f0\b\fs24 \cf0 Engineering:
7
+ \b0 \
8
+ Some people\
9
+ \
10
+
11
+ \b Human Interface Design:
12
+ \b0 \
13
+ Some other people\
14
+ \
15
+
16
+ \b Testing:
17
+ \b0 \
18
+ Hopefully not nobody\
19
+ \
20
+
21
+ \b Documentation:
22
+ \b0 \
23
+ Whoever\
24
+ \
25
+
26
+ \b With special thanks to:
27
+ \b0 \
28
+ Mom\
29
+ }
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>files</key>
6
+ <dict>
7
+ <key>Resources/Failed.icns</key>
8
+ <data>
9
+ 5PTHyCZ2DVpqH9uT1YhHCjnGTLM=
10
+ </data>
11
+ <key>Resources/en.lproj/Credits.rtf</key>
12
+ <dict>
13
+ <key>hash</key>
14
+ <data>
15
+ YKJIFIsxneJuNkJNJQIcJIjiPOg=
16
+ </data>
17
+ <key>optional</key>
18
+ <true/>
19
+ </dict>
20
+ <key>Resources/en.lproj/InfoPlist.strings</key>
21
+ <dict>
22
+ <key>hash</key>
23
+ <data>
24
+ MiLKDDnrUKr4EmuvhS5VQwxHGK8=
25
+ </data>
26
+ <key>optional</key>
27
+ <true/>
28
+ </dict>
29
+ <key>Resources/en.lproj/MainMenu.nib</key>
30
+ <dict>
31
+ <key>hash</key>
32
+ <data>
33
+ N1QqAM17vgDk7XNtv27koaE4IhE=
34
+ </data>
35
+ <key>optional</key>
36
+ <true/>
37
+ </dict>
38
+ </dict>
39
+ <key>rules</key>
40
+ <dict>
41
+ <key>^Resources/</key>
42
+ <true/>
43
+ <key>^Resources/.*\.lproj/</key>
44
+ <dict>
45
+ <key>optional</key>
46
+ <true/>
47
+ <key>weight</key>
48
+ <real>1000</real>
49
+ </dict>
50
+ <key>^Resources/.*\.lproj/locversion.plist$</key>
51
+ <dict>
52
+ <key>omit</key>
53
+ <true/>
54
+ <key>weight</key>
55
+ <real>1100</real>
56
+ </dict>
57
+ <key>^version.plist$</key>
58
+ <true/>
59
+ </dict>
60
+ </dict>
61
+ </plist>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>BuildMachineOSBuild</key>
6
+ <string>12A269</string>
7
+ <key>CFBundleDevelopmentRegion</key>
8
+ <string>en</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>terminal-notifier</string>
11
+ <key>CFBundleIconFile</key>
12
+ <string>Notify</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>nl.superalloy.oss.notify.terminal-notifier</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>terminal-notifier</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>1.5.0</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>7</string>
27
+ <key>DTCompiler</key>
28
+ <string></string>
29
+ <key>DTPlatformBuild</key>
30
+ <string>4F1003</string>
31
+ <key>DTPlatformVersion</key>
32
+ <string>GM</string>
33
+ <key>DTSDKBuild</key>
34
+ <string>12A264</string>
35
+ <key>DTSDKName</key>
36
+ <string>macosx10.8</string>
37
+ <key>DTXcode</key>
38
+ <string>0441</string>
39
+ <key>DTXcodeBuild</key>
40
+ <string>4F1003</string>
41
+ <key>LSMinimumSystemVersion</key>
42
+ <string>10.8</string>
43
+ <key>LSUIElement</key>
44
+ <true/>
45
+ <key>NSHumanReadableCopyright</key>
46
+ <string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
47
+ <key>NSMainNibFile</key>
48
+ <string>MainMenu</string>
49
+ <key>NSPrincipalClass</key>
50
+ <string>NSApplication</string>
51
+ </dict>
52
+ </plist>
@@ -0,0 +1,29 @@
1
+ {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2
+ {\colortbl;\red255\green255\blue255;}
3
+ \paperw9840\paperh8400
4
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5
+
6
+ \f0\b\fs24 \cf0 Engineering:
7
+ \b0 \
8
+ Some people\
9
+ \
10
+
11
+ \b Human Interface Design:
12
+ \b0 \
13
+ Some other people\
14
+ \
15
+
16
+ \b Testing:
17
+ \b0 \
18
+ Hopefully not nobody\
19
+ \
20
+
21
+ \b Documentation:
22
+ \b0 \
23
+ Whoever\
24
+ \
25
+
26
+ \b With special thanks to:
27
+ \b0 \
28
+ Mom\
29
+ }
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>files</key>
6
+ <dict>
7
+ <key>Resources/Notify.icns</key>
8
+ <data>
9
+ KcJRIuj13j1C56RrHQi7g7sxcr8=
10
+ </data>
11
+ <key>Resources/en.lproj/Credits.rtf</key>
12
+ <dict>
13
+ <key>hash</key>
14
+ <data>
15
+ YKJIFIsxneJuNkJNJQIcJIjiPOg=
16
+ </data>
17
+ <key>optional</key>
18
+ <true/>
19
+ </dict>
20
+ <key>Resources/en.lproj/InfoPlist.strings</key>
21
+ <dict>
22
+ <key>hash</key>
23
+ <data>
24
+ MiLKDDnrUKr4EmuvhS5VQwxHGK8=
25
+ </data>
26
+ <key>optional</key>
27
+ <true/>
28
+ </dict>
29
+ <key>Resources/en.lproj/MainMenu.nib</key>
30
+ <dict>
31
+ <key>hash</key>
32
+ <data>
33
+ N1QqAM17vgDk7XNtv27koaE4IhE=
34
+ </data>
35
+ <key>optional</key>
36
+ <true/>
37
+ </dict>
38
+ </dict>
39
+ <key>rules</key>
40
+ <dict>
41
+ <key>^Resources/</key>
42
+ <true/>
43
+ <key>^Resources/.*\.lproj/</key>
44
+ <dict>
45
+ <key>optional</key>
46
+ <true/>
47
+ <key>weight</key>
48
+ <real>1000</real>
49
+ </dict>
50
+ <key>^Resources/.*\.lproj/locversion.plist$</key>
51
+ <dict>
52
+ <key>omit</key>
53
+ <true/>
54
+ <key>weight</key>
55
+ <real>1100</real>
56
+ </dict>
57
+ <key>^version.plist$</key>
58
+ <true/>
59
+ </dict>
60
+ </dict>
61
+ </plist>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>BuildMachineOSBuild</key>
6
+ <string>12A269</string>
7
+ <key>CFBundleDevelopmentRegion</key>
8
+ <string>en</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>terminal-notifier</string>
11
+ <key>CFBundleIconFile</key>
12
+ <string>Pending</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>nl.superalloy.oss.pending.terminal-notifier</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>terminal-notifier</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>1.5.0</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>7</string>
27
+ <key>DTCompiler</key>
28
+ <string></string>
29
+ <key>DTPlatformBuild</key>
30
+ <string>4F1003</string>
31
+ <key>DTPlatformVersion</key>
32
+ <string>GM</string>
33
+ <key>DTSDKBuild</key>
34
+ <string>12A264</string>
35
+ <key>DTSDKName</key>
36
+ <string>macosx10.8</string>
37
+ <key>DTXcode</key>
38
+ <string>0441</string>
39
+ <key>DTXcodeBuild</key>
40
+ <string>4F1003</string>
41
+ <key>LSMinimumSystemVersion</key>
42
+ <string>10.8</string>
43
+ <key>LSUIElement</key>
44
+ <true/>
45
+ <key>NSHumanReadableCopyright</key>
46
+ <string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
47
+ <key>NSMainNibFile</key>
48
+ <string>MainMenu</string>
49
+ <key>NSPrincipalClass</key>
50
+ <string>NSApplication</string>
51
+ </dict>
52
+ </plist>
@@ -0,0 +1,29 @@
1
+ {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2
+ {\colortbl;\red255\green255\blue255;}
3
+ \paperw9840\paperh8400
4
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5
+
6
+ \f0\b\fs24 \cf0 Engineering:
7
+ \b0 \
8
+ Some people\
9
+ \
10
+
11
+ \b Human Interface Design:
12
+ \b0 \
13
+ Some other people\
14
+ \
15
+
16
+ \b Testing:
17
+ \b0 \
18
+ Hopefully not nobody\
19
+ \
20
+
21
+ \b Documentation:
22
+ \b0 \
23
+ Whoever\
24
+ \
25
+
26
+ \b With special thanks to:
27
+ \b0 \
28
+ Mom\
29
+ }
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>files</key>
6
+ <dict>
7
+ <key>Resources/Pending.icns</key>
8
+ <data>
9
+ VVQz2MdrOoLA6hP40qOZQD2yiCA=
10
+ </data>
11
+ <key>Resources/en.lproj/Credits.rtf</key>
12
+ <dict>
13
+ <key>hash</key>
14
+ <data>
15
+ YKJIFIsxneJuNkJNJQIcJIjiPOg=
16
+ </data>
17
+ <key>optional</key>
18
+ <true/>
19
+ </dict>
20
+ <key>Resources/en.lproj/InfoPlist.strings</key>
21
+ <dict>
22
+ <key>hash</key>
23
+ <data>
24
+ MiLKDDnrUKr4EmuvhS5VQwxHGK8=
25
+ </data>
26
+ <key>optional</key>
27
+ <true/>
28
+ </dict>
29
+ <key>Resources/en.lproj/MainMenu.nib</key>
30
+ <dict>
31
+ <key>hash</key>
32
+ <data>
33
+ N1QqAM17vgDk7XNtv27koaE4IhE=
34
+ </data>
35
+ <key>optional</key>
36
+ <true/>
37
+ </dict>
38
+ </dict>
39
+ <key>rules</key>
40
+ <dict>
41
+ <key>^Resources/</key>
42
+ <true/>
43
+ <key>^Resources/.*\.lproj/</key>
44
+ <dict>
45
+ <key>optional</key>
46
+ <true/>
47
+ <key>weight</key>
48
+ <real>1000</real>
49
+ </dict>
50
+ <key>^Resources/.*\.lproj/locversion.plist$</key>
51
+ <dict>
52
+ <key>omit</key>
53
+ <true/>
54
+ <key>weight</key>
55
+ <real>1100</real>
56
+ </dict>
57
+ <key>^version.plist$</key>
58
+ <true/>
59
+ </dict>
60
+ </dict>
61
+ </plist>
@@ -0,0 +1,52 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>BuildMachineOSBuild</key>
6
+ <string>12A269</string>
7
+ <key>CFBundleDevelopmentRegion</key>
8
+ <string>en</string>
9
+ <key>CFBundleExecutable</key>
10
+ <string>terminal-notifier</string>
11
+ <key>CFBundleIconFile</key>
12
+ <string>Success</string>
13
+ <key>CFBundleIdentifier</key>
14
+ <string>nl.superalloy.oss.success.terminal-notifier</string>
15
+ <key>CFBundleInfoDictionaryVersion</key>
16
+ <string>6.0</string>
17
+ <key>CFBundleName</key>
18
+ <string>terminal-notifier</string>
19
+ <key>CFBundlePackageType</key>
20
+ <string>APPL</string>
21
+ <key>CFBundleShortVersionString</key>
22
+ <string>1.5.0</string>
23
+ <key>CFBundleSignature</key>
24
+ <string>????</string>
25
+ <key>CFBundleVersion</key>
26
+ <string>7</string>
27
+ <key>DTCompiler</key>
28
+ <string></string>
29
+ <key>DTPlatformBuild</key>
30
+ <string>4F1003</string>
31
+ <key>DTPlatformVersion</key>
32
+ <string>GM</string>
33
+ <key>DTSDKBuild</key>
34
+ <string>12A264</string>
35
+ <key>DTSDKName</key>
36
+ <string>macosx10.8</string>
37
+ <key>DTXcode</key>
38
+ <string>0441</string>
39
+ <key>DTXcodeBuild</key>
40
+ <string>4F1003</string>
41
+ <key>LSMinimumSystemVersion</key>
42
+ <string>10.8</string>
43
+ <key>LSUIElement</key>
44
+ <true/>
45
+ <key>NSHumanReadableCopyright</key>
46
+ <string>Copyright © 2012 Eloy Durán. All rights reserved.</string>
47
+ <key>NSMainNibFile</key>
48
+ <string>MainMenu</string>
49
+ <key>NSPrincipalClass</key>
50
+ <string>NSApplication</string>
51
+ </dict>
52
+ </plist>
@@ -0,0 +1,29 @@
1
+ {\rtf0\ansi{\fonttbl\f0\fswiss Helvetica;}
2
+ {\colortbl;\red255\green255\blue255;}
3
+ \paperw9840\paperh8400
4
+ \pard\tx560\tx1120\tx1680\tx2240\tx2800\tx3360\tx3920\tx4480\tx5040\tx5600\tx6160\tx6720\ql\qnatural
5
+
6
+ \f0\b\fs24 \cf0 Engineering:
7
+ \b0 \
8
+ Some people\
9
+ \
10
+
11
+ \b Human Interface Design:
12
+ \b0 \
13
+ Some other people\
14
+ \
15
+
16
+ \b Testing:
17
+ \b0 \
18
+ Hopefully not nobody\
19
+ \
20
+
21
+ \b Documentation:
22
+ \b0 \
23
+ Whoever\
24
+ \
25
+
26
+ \b With special thanks to:
27
+ \b0 \
28
+ Mom\
29
+ }
@@ -0,0 +1,61 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>files</key>
6
+ <dict>
7
+ <key>Resources/Success.icns</key>
8
+ <data>
9
+ 78sPBudKpASNEPzsDGG9KML1+uw=
10
+ </data>
11
+ <key>Resources/en.lproj/Credits.rtf</key>
12
+ <dict>
13
+ <key>hash</key>
14
+ <data>
15
+ YKJIFIsxneJuNkJNJQIcJIjiPOg=
16
+ </data>
17
+ <key>optional</key>
18
+ <true/>
19
+ </dict>
20
+ <key>Resources/en.lproj/InfoPlist.strings</key>
21
+ <dict>
22
+ <key>hash</key>
23
+ <data>
24
+ MiLKDDnrUKr4EmuvhS5VQwxHGK8=
25
+ </data>
26
+ <key>optional</key>
27
+ <true/>
28
+ </dict>
29
+ <key>Resources/en.lproj/MainMenu.nib</key>
30
+ <dict>
31
+ <key>hash</key>
32
+ <data>
33
+ N1QqAM17vgDk7XNtv27koaE4IhE=
34
+ </data>
35
+ <key>optional</key>
36
+ <true/>
37
+ </dict>
38
+ </dict>
39
+ <key>rules</key>
40
+ <dict>
41
+ <key>^Resources/</key>
42
+ <true/>
43
+ <key>^Resources/.*\.lproj/</key>
44
+ <dict>
45
+ <key>optional</key>
46
+ <true/>
47
+ <key>weight</key>
48
+ <real>1000</real>
49
+ </dict>
50
+ <key>^Resources/.*\.lproj/locversion.plist$</key>
51
+ <dict>
52
+ <key>omit</key>
53
+ <true/>
54
+ <key>weight</key>
55
+ <real>1100</real>
56
+ </dict>
57
+ <key>^version.plist$</key>
58
+ <true/>
59
+ </dict>
60
+ </dict>
61
+ </plist>
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.4.2
4
+ version: 1.5.3
5
5
  prerelease:
6
6
  platform: ruby
7
7
  authors:
@@ -89,10 +89,43 @@ extra_rdoc_files:
89
89
  - README.markdown
90
90
  files:
91
91
  - lib/terminal-notifier-guard.rb
92
+ - vendor/terminal-notifier-failed.app/Contents/_CodeSignature/CodeResources
93
+ - vendor/terminal-notifier-failed.app/Contents/Info.plist
94
+ - vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier
95
+ - vendor/terminal-notifier-failed.app/Contents/PkgInfo
96
+ - vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/Credits.rtf
97
+ - vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/InfoPlist.strings
98
+ - vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/MainMenu.nib
99
+ - vendor/terminal-notifier-failed.app/Contents/Resources/Failed.icns
100
+ - vendor/terminal-notifier-notify.app/Contents/_CodeSignature/CodeResources
101
+ - vendor/terminal-notifier-notify.app/Contents/Info.plist
102
+ - vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier
103
+ - vendor/terminal-notifier-notify.app/Contents/PkgInfo
104
+ - vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/Credits.rtf
105
+ - vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/InfoPlist.strings
106
+ - vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/MainMenu.nib
107
+ - vendor/terminal-notifier-notify.app/Contents/Resources/Notify.icns
108
+ - vendor/terminal-notifier-pending.app/Contents/_CodeSignature/CodeResources
109
+ - vendor/terminal-notifier-pending.app/Contents/Info.plist
110
+ - vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier
111
+ - vendor/terminal-notifier-pending.app/Contents/PkgInfo
112
+ - vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/Credits.rtf
113
+ - vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/InfoPlist.strings
114
+ - vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/MainMenu.nib
115
+ - vendor/terminal-notifier-pending.app/Contents/Resources/Pending.icns
116
+ - vendor/terminal-notifier-success.app/Contents/_CodeSignature/CodeResources
117
+ - vendor/terminal-notifier-success.app/Contents/Info.plist
118
+ - vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier
119
+ - vendor/terminal-notifier-success.app/Contents/PkgInfo
120
+ - vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/Credits.rtf
121
+ - vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/InfoPlist.strings
122
+ - vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/MainMenu.nib
123
+ - vendor/terminal-notifier-success.app/Contents/Resources/Success.icns
92
124
  - lib/terminal_notifier/guard/failed.rb
93
125
  - lib/terminal_notifier/guard/notify.rb
94
126
  - lib/terminal_notifier/guard/pending.rb
95
127
  - lib/terminal_notifier/guard/success.rb
128
+ - lib/terminal_notifier/guard/version.rb
96
129
  - bin/terminal-notifier-failed
97
130
  - bin/terminal-notifier-notify
98
131
  - bin/terminal-notifier-pending
@@ -112,7 +145,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
112
145
  version: '0'
113
146
  segments:
114
147
  - 0
115
- hash: -2038140021858145580
148
+ hash: 2966011371531771803
116
149
  required_rubygems_version: !ruby/object:Gem::Requirement
117
150
  none: false
118
151
  requirements:
@@ -121,7 +154,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
121
154
  version: '0'
122
155
  segments:
123
156
  - 0
124
- hash: -2038140021858145580
157
+ hash: 2966011371531771803
125
158
  requirements: []
126
159
  rubyforge_project:
127
160
  rubygems_version: 1.8.24