terminal-notifier-guard 1.5.3 → 1.6.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.
Files changed (40) hide show
  1. checksums.yaml +7 -0
  2. data/lib/terminal-notifier-guard.rb +3 -2
  3. data/lib/terminal_notifier/guard/failed.rb +6 -1
  4. data/lib/terminal_notifier/guard/notify.rb +6 -1
  5. data/lib/terminal_notifier/guard/pending.rb +6 -1
  6. data/lib/terminal_notifier/guard/success.rb +6 -1
  7. metadata +36 -71
  8. data/lib/terminal_notifier/guard/version.rb +0 -5
  9. data/vendor/terminal-notifier-failed.app/Contents/Info.plist +0 -52
  10. data/vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier +0 -0
  11. data/vendor/terminal-notifier-failed.app/Contents/PkgInfo +0 -1
  12. data/vendor/terminal-notifier-failed.app/Contents/Resources/Failed.icns +0 -0
  13. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/Credits.rtf +0 -29
  14. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  15. data/vendor/terminal-notifier-failed.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  16. data/vendor/terminal-notifier-failed.app/Contents/_CodeSignature/CodeResources +0 -61
  17. data/vendor/terminal-notifier-notify.app/Contents/Info.plist +0 -52
  18. data/vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier +0 -0
  19. data/vendor/terminal-notifier-notify.app/Contents/PkgInfo +0 -1
  20. data/vendor/terminal-notifier-notify.app/Contents/Resources/Notify.icns +0 -0
  21. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/Credits.rtf +0 -29
  22. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  23. data/vendor/terminal-notifier-notify.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  24. data/vendor/terminal-notifier-notify.app/Contents/_CodeSignature/CodeResources +0 -61
  25. data/vendor/terminal-notifier-pending.app/Contents/Info.plist +0 -52
  26. data/vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier +0 -0
  27. data/vendor/terminal-notifier-pending.app/Contents/PkgInfo +0 -1
  28. data/vendor/terminal-notifier-pending.app/Contents/Resources/Pending.icns +0 -0
  29. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/Credits.rtf +0 -29
  30. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  31. data/vendor/terminal-notifier-pending.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  32. data/vendor/terminal-notifier-pending.app/Contents/_CodeSignature/CodeResources +0 -61
  33. data/vendor/terminal-notifier-success.app/Contents/Info.plist +0 -52
  34. data/vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier +0 -0
  35. data/vendor/terminal-notifier-success.app/Contents/PkgInfo +0 -1
  36. data/vendor/terminal-notifier-success.app/Contents/Resources/Success.icns +0 -0
  37. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/Credits.rtf +0 -29
  38. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/InfoPlist.strings +0 -0
  39. data/vendor/terminal-notifier-success.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
  40. data/vendor/terminal-notifier-success.app/Contents/_CodeSignature/CodeResources +0 -61
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: d8cef1ebe06e3689a8a28f0e9b1d1961f8a55043
4
+ data.tar.gz: 4fd5e78f3d7e0b3a36873f24a9cdb97f3d65fa47
5
+ SHA512:
6
+ metadata.gz: 9501b1a9843391d89f89a49ac5ae56124d88e45f74b364d9c37f9ead3b124d6b6688e9bb74dc8e157c98bc2093e7b06603004359f3e0cf799214af9f42d1e53f
7
+ data.tar.gz: 33e42c534864e955825030f855674e31aefcc0425ba29e607415eeed708ecfcc2d396ed99be25e9b7c7068e3793c4132b16bbd324ef3e46a4255b9d451acfdf3
@@ -1,4 +1,4 @@
1
- %w(version failed notify pending success).each do |type|
1
+ %w(failed notify pending success).each do |type|
2
2
  require File.expand_path("../terminal_notifier/guard/#{type}", __FILE__)
3
3
  end
4
4
 
@@ -12,7 +12,8 @@ module TerminalNotifier
12
12
  # Returns wether or not the current platform is Mac OS X 10.8, or higher.
13
13
  def self.available?
14
14
  if @available.nil?
15
- @available = `uname`.strip == 'Darwin' && `sw_vers -productVersion`.strip >= '10.8'
15
+ @available = `uname`.strip == 'Darwin' &&
16
+ Gem::Version.new(`sw_vers -productVersion`.strip) >= Gem::Version.new('10.8')
16
17
  end
17
18
  @available
18
19
  end
@@ -1,7 +1,12 @@
1
1
  module TerminalNotifier
2
2
  module Guard
3
3
  module Failed
4
- BIN_PATH = File.expand_path('../../../../vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier', __FILE__)
4
+ terminal_notifier_path = `which terminal-notifier`.strip
5
+
6
+ BIN_PATH = terminal_notifier_path.empty? ?
7
+ File.expand_path('../../../../vendor/terminal-notifier-failed.app/Contents/MacOS/terminal-notifier', __FILE__)
8
+ :
9
+ terminal_notifier_path
5
10
  end
6
11
  end
7
12
  end
@@ -1,7 +1,12 @@
1
1
  module TerminalNotifier
2
2
  module Guard
3
3
  module Notify
4
- BIN_PATH = File.expand_path('../../../../vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier', __FILE__)
4
+ terminal_notifier_path = `which terminal-notifier`.strip
5
+
6
+ BIN_PATH = terminal_notifier_path.empty? ?
7
+ File.expand_path('../../../../vendor/terminal-notifier-notify.app/Contents/MacOS/terminal-notifier', __FILE__)
8
+ :
9
+ terminal_notifier_path
5
10
  end
6
11
  end
7
12
  end
@@ -1,7 +1,12 @@
1
1
  module TerminalNotifier
2
2
  module Guard
3
3
  module Pending
4
- BIN_PATH = File.expand_path('../../../../vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier', __FILE__)
4
+ terminal_notifier_path = `which terminal-notifier`.strip
5
+
6
+ BIN_PATH = terminal_notifier_path.empty? ?
7
+ File.expand_path('../../../../vendor/terminal-notifier-pending.app/Contents/MacOS/terminal-notifier', __FILE__)
8
+ :
9
+ terminal_notifier_path
5
10
  end
6
11
  end
7
12
  end
@@ -1,7 +1,12 @@
1
1
  module TerminalNotifier
2
2
  module Guard
3
3
  module Success
4
- BIN_PATH = File.expand_path('../../../../vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier', __FILE__)
4
+ terminal_notifier_path = `which terminal-notifier`.strip
5
+
6
+ BIN_PATH = terminal_notifier_path.empty? ?
7
+ File.expand_path('../../../../vendor/terminal-notifier-success.app/Contents/MacOS/terminal-notifier', __FILE__)
8
+ :
9
+ terminal_notifier_path
5
10
  end
6
11
  end
7
12
  end
metadata CHANGED
@@ -1,8 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: terminal-notifier-guard
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.5.3
5
- prerelease:
4
+ version: 1.6.0
6
5
  platform: ruby
7
6
  authors:
8
7
  - Eloy Duran
@@ -10,75 +9,81 @@ authors:
10
9
  autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2012-08-14 00:00:00.000000000 Z
12
+ date: 2014-10-22 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: rake
17
16
  requirement: !ruby/object:Gem::Requirement
18
- none: false
19
17
  requirements:
20
- - - ! '>='
18
+ - - '>='
21
19
  - !ruby/object:Gem::Version
22
20
  version: '0'
23
21
  type: :development
24
22
  prerelease: false
25
23
  version_requirements: !ruby/object:Gem::Requirement
26
- none: false
27
24
  requirements:
28
- - - ! '>='
25
+ - - '>='
29
26
  - !ruby/object:Gem::Version
30
27
  version: '0'
31
28
  - !ruby/object:Gem::Dependency
32
29
  name: bacon
33
30
  requirement: !ruby/object:Gem::Requirement
34
- none: false
35
31
  requirements:
36
- - - ! '>='
32
+ - - '>='
37
33
  - !ruby/object:Gem::Version
38
34
  version: '0'
39
35
  type: :development
40
36
  prerelease: false
41
37
  version_requirements: !ruby/object:Gem::Requirement
42
- none: false
43
38
  requirements:
44
- - - ! '>='
39
+ - - '>='
45
40
  - !ruby/object:Gem::Version
46
41
  version: '0'
47
42
  - !ruby/object:Gem::Dependency
48
43
  name: mocha
49
44
  requirement: !ruby/object:Gem::Requirement
50
- none: false
51
45
  requirements:
52
- - - ! '>='
46
+ - - '>='
53
47
  - !ruby/object:Gem::Version
54
48
  version: '0'
55
49
  type: :development
56
50
  prerelease: false
57
51
  version_requirements: !ruby/object:Gem::Requirement
58
- none: false
59
52
  requirements:
60
- - - ! '>='
53
+ - - '>='
61
54
  - !ruby/object:Gem::Version
62
55
  version: '0'
63
56
  - !ruby/object:Gem::Dependency
64
57
  name: mocha-on-bacon
65
58
  requirement: !ruby/object:Gem::Requirement
66
- none: false
67
59
  requirements:
68
- - - ! '>='
60
+ - - '>='
69
61
  - !ruby/object:Gem::Version
70
62
  version: '0'
71
63
  type: :development
72
64
  prerelease: false
73
65
  version_requirements: !ruby/object:Gem::Requirement
74
- none: false
75
66
  requirements:
76
- - - ! '>='
67
+ - - '>='
68
+ - !ruby/object:Gem::Version
69
+ version: '0'
70
+ - !ruby/object:Gem::Dependency
71
+ name: terminal-notifier
72
+ requirement: !ruby/object:Gem::Requirement
73
+ requirements:
74
+ - - '>='
75
+ - !ruby/object:Gem::Version
76
+ version: '0'
77
+ type: :development
78
+ prerelease: false
79
+ version_requirements: !ruby/object:Gem::Requirement
80
+ requirements:
81
+ - - '>='
77
82
  - !ruby/object:Gem::Version
78
83
  version: '0'
79
84
  description:
80
85
  email:
81
- - wouter.de.vos@springest.com
86
+ - wouter@springest.com
82
87
  executables:
83
88
  - terminal-notifier-notify
84
89
  - terminal-notifier-success
@@ -88,77 +93,37 @@ extensions: []
88
93
  extra_rdoc_files:
89
94
  - README.markdown
90
95
  files:
96
+ - README.markdown
97
+ - bin/terminal-notifier-failed
98
+ - bin/terminal-notifier-notify
99
+ - bin/terminal-notifier-pending
100
+ - bin/terminal-notifier-success
91
101
  - 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
124
102
  - lib/terminal_notifier/guard/failed.rb
125
103
  - lib/terminal_notifier/guard/notify.rb
126
104
  - lib/terminal_notifier/guard/pending.rb
127
105
  - lib/terminal_notifier/guard/success.rb
128
- - lib/terminal_notifier/guard/version.rb
129
- - bin/terminal-notifier-failed
130
- - bin/terminal-notifier-notify
131
- - bin/terminal-notifier-pending
132
- - bin/terminal-notifier-success
133
- - README.markdown
134
- homepage: https://github.com/foxycoder/terminal-notifier
106
+ homepage: https://github.com/Springest/terminal-notifier-guard
135
107
  licenses: []
108
+ metadata: {}
136
109
  post_install_message:
137
110
  rdoc_options: []
138
111
  require_paths:
139
112
  - lib
140
113
  required_ruby_version: !ruby/object:Gem::Requirement
141
- none: false
142
114
  requirements:
143
- - - ! '>='
115
+ - - '>='
144
116
  - !ruby/object:Gem::Version
145
117
  version: '0'
146
- segments:
147
- - 0
148
- hash: 2966011371531771803
149
118
  required_rubygems_version: !ruby/object:Gem::Requirement
150
- none: false
151
119
  requirements:
152
- - - ! '>='
120
+ - - '>='
153
121
  - !ruby/object:Gem::Version
154
122
  version: '0'
155
- segments:
156
- - 0
157
- hash: 2966011371531771803
158
123
  requirements: []
159
124
  rubyforge_project:
160
- rubygems_version: 1.8.24
125
+ rubygems_version: 2.4.2
161
126
  signing_key:
162
- specification_version: 3
127
+ specification_version: 4
163
128
  summary: Send User Notifications on Mac OS X 10.8 - with status icons.
164
129
  test_files: []
@@ -1,5 +0,0 @@
1
- module TerminalNotifier
2
- module Guard
3
- VERSION = '1.5.3'
4
- end
5
- end
@@ -1,52 +0,0 @@
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>
@@ -1 +0,0 @@
1
- APPL????
@@ -1,29 +0,0 @@
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
- }
@@ -1,61 +0,0 @@
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>
@@ -1,52 +0,0 @@
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>
@@ -1 +0,0 @@
1
- APPL????
@@ -1,29 +0,0 @@
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
- }
@@ -1,61 +0,0 @@
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>
@@ -1,52 +0,0 @@
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>
@@ -1 +0,0 @@
1
- APPL????
@@ -1,29 +0,0 @@
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
- }
@@ -1,61 +0,0 @@
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>
@@ -1,52 +0,0 @@
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>
@@ -1 +0,0 @@
1
- APPL????
@@ -1,29 +0,0 @@
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
- }
@@ -1,61 +0,0 @@
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>