terminal-notifier 1.5.1 → 1.5.2
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 +4 -4
- data/lib/terminal-notifier.rb +1 -1
- data/vendor/terminal-notifier/README.markdown +53 -12
- data/vendor/terminal-notifier/Ruby/Gemfile +2 -0
- data/vendor/terminal-notifier/Ruby/Gemfile.lock +23 -0
- data/vendor/terminal-notifier/Ruby/LICENSE +23 -0
- data/vendor/terminal-notifier/Ruby/README.markdown +48 -0
- data/vendor/terminal-notifier/Ruby/Rakefile +44 -0
- data/vendor/terminal-notifier/Ruby/bin/terminal-notifier +13 -0
- data/vendor/terminal-notifier/Ruby/lib/terminal-notifier.rb +87 -0
- data/vendor/terminal-notifier/Ruby/spec/terminal-notifier_spec.rb +72 -0
- data/vendor/terminal-notifier/Ruby/terminal-notifier.gemspec +26 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.pbxproj +311 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
- data/vendor/terminal-notifier/Terminal Notifier.xcodeproj/xcshareddata/xcschemes/Terminal Notifier.xcscheme +140 -0
- data/vendor/terminal-notifier/Terminal Notifier/AppDelegate.h +4 -0
- data/vendor/terminal-notifier/Terminal Notifier/AppDelegate.m +339 -0
- data/vendor/terminal-notifier/Terminal Notifier/Terminal Notifier-Info.plist +36 -0
- data/vendor/terminal-notifier/Terminal Notifier/Terminal Notifier-Prefix.pch +7 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/Credits.rtf +29 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/InfoPlist.strings +2 -0
- data/vendor/terminal-notifier/Terminal Notifier/en.lproj/MainMenu.xib +3191 -0
- data/vendor/terminal-notifier/Terminal Notifier/main.m +6 -0
- data/vendor/terminal-notifier/Terminal.icns +0 -0
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Info.plist +10 -10
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/MacOS/terminal-notifier +0 -0
- data/vendor/terminal-notifier/terminal-notifier.app/Contents/Resources/en.lproj/MainMenu.nib +0 -0
- metadata +35 -14
@@ -0,0 +1,26 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
plist = File.expand_path('../../Terminal Notifier/Terminal Notifier-Info.plist', __FILE__)
|
3
|
+
# Also run on non-OSX machines, otherwise bundle installs directly from the repo will fail.
|
4
|
+
# version = `/usr/libexec/PlistBuddy -c 'Print :CFBundleShortVersionString' '#{plist}'`.strip
|
5
|
+
version = File.read(plist).match(%r{<string>(\d+\.\d+\.\d+)</string>})[1]
|
6
|
+
|
7
|
+
|
8
|
+
Gem::Specification.new do |gem|
|
9
|
+
gem.name = "terminal-notifier"
|
10
|
+
gem.version = version
|
11
|
+
gem.summary = 'Send User Notifications on Mac OS X 10.8 or higher.'
|
12
|
+
gem.authors = ["Eloy Duran"]
|
13
|
+
gem.email = ["eloy.de.enige@gmail.com"]
|
14
|
+
gem.homepage = 'https://github.com/alloy/terminal-notifier'
|
15
|
+
gem.license = 'MIT'
|
16
|
+
|
17
|
+
gem.executables = ['terminal-notifier']
|
18
|
+
gem.files = ['bin/terminal-notifier', 'lib/terminal-notifier.rb'] + Dir.glob('vendor/terminal-notifier/**/*')
|
19
|
+
gem.require_paths = ['lib']
|
20
|
+
|
21
|
+
gem.extra_rdoc_files = ['README.markdown']
|
22
|
+
|
23
|
+
gem.add_development_dependency 'bacon'
|
24
|
+
gem.add_development_dependency 'mocha'
|
25
|
+
gem.add_development_dependency 'mocha-on-bacon'
|
26
|
+
end
|
@@ -0,0 +1,311 @@
|
|
1
|
+
// !$*UTF8*$!
|
2
|
+
{
|
3
|
+
archiveVersion = 1;
|
4
|
+
classes = {
|
5
|
+
};
|
6
|
+
objectVersion = 46;
|
7
|
+
objects = {
|
8
|
+
|
9
|
+
/* Begin PBXBuildFile section */
|
10
|
+
5199791915B1F92B003AFC57 /* Cocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5199791815B1F92B003AFC57 /* Cocoa.framework */; };
|
11
|
+
5199792315B1F92B003AFC57 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = 5199792115B1F92B003AFC57 /* InfoPlist.strings */; };
|
12
|
+
5199792515B1F92B003AFC57 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = 5199792415B1F92B003AFC57 /* main.m */; };
|
13
|
+
5199792915B1F92B003AFC57 /* Credits.rtf in Resources */ = {isa = PBXBuildFile; fileRef = 5199792715B1F92B003AFC57 /* Credits.rtf */; };
|
14
|
+
5199792C15B1F92B003AFC57 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = 5199792B15B1F92B003AFC57 /* AppDelegate.m */; };
|
15
|
+
5199792F15B1F92B003AFC57 /* MainMenu.xib in Resources */ = {isa = PBXBuildFile; fileRef = 5199792D15B1F92B003AFC57 /* MainMenu.xib */; };
|
16
|
+
5199794215B2F908003AFC57 /* ScriptingBridge.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5199794115B2F908003AFC57 /* ScriptingBridge.framework */; };
|
17
|
+
5199794C15B302F1003AFC57 /* Terminal.icns in Resources */ = {isa = PBXBuildFile; fileRef = 5199794B15B302F1003AFC57 /* Terminal.icns */; };
|
18
|
+
/* End PBXBuildFile section */
|
19
|
+
|
20
|
+
/* Begin PBXFileReference section */
|
21
|
+
5199791415B1F92B003AFC57 /* terminal-notifier.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "terminal-notifier.app"; sourceTree = BUILT_PRODUCTS_DIR; };
|
22
|
+
5199791815B1F92B003AFC57 /* Cocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Cocoa.framework; path = System/Library/Frameworks/Cocoa.framework; sourceTree = SDKROOT; };
|
23
|
+
5199791B15B1F92B003AFC57 /* AppKit.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = AppKit.framework; path = System/Library/Frameworks/AppKit.framework; sourceTree = SDKROOT; };
|
24
|
+
5199791C15B1F92B003AFC57 /* CoreData.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreData.framework; path = System/Library/Frameworks/CoreData.framework; sourceTree = SDKROOT; };
|
25
|
+
5199791D15B1F92B003AFC57 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; };
|
26
|
+
5199792015B1F92B003AFC57 /* Terminal Notifier-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "Terminal Notifier-Info.plist"; sourceTree = "<group>"; };
|
27
|
+
5199792215B1F92B003AFC57 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = "<group>"; };
|
28
|
+
5199792415B1F92B003AFC57 /* main.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = main.m; sourceTree = "<group>"; };
|
29
|
+
5199792615B1F92B003AFC57 /* Terminal Notifier-Prefix.pch */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Terminal Notifier-Prefix.pch"; sourceTree = "<group>"; };
|
30
|
+
5199792815B1F92B003AFC57 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.rtf; name = en; path = en.lproj/Credits.rtf; sourceTree = "<group>"; };
|
31
|
+
5199792A15B1F92B003AFC57 /* AppDelegate.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = AppDelegate.h; sourceTree = "<group>"; };
|
32
|
+
5199792B15B1F92B003AFC57 /* AppDelegate.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = AppDelegate.m; sourceTree = "<group>"; };
|
33
|
+
5199792E15B1F92B003AFC57 /* en */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = en; path = en.lproj/MainMenu.xib; sourceTree = "<group>"; };
|
34
|
+
5199794115B2F908003AFC57 /* ScriptingBridge.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = ScriptingBridge.framework; path = System/Library/Frameworks/ScriptingBridge.framework; sourceTree = SDKROOT; };
|
35
|
+
5199794B15B302F1003AFC57 /* Terminal.icns */ = {isa = PBXFileReference; lastKnownFileType = image.icns; path = Terminal.icns; sourceTree = "<group>"; };
|
36
|
+
/* End PBXFileReference section */
|
37
|
+
|
38
|
+
/* Begin PBXFrameworksBuildPhase section */
|
39
|
+
5199791115B1F92B003AFC57 /* Frameworks */ = {
|
40
|
+
isa = PBXFrameworksBuildPhase;
|
41
|
+
buildActionMask = 2147483647;
|
42
|
+
files = (
|
43
|
+
5199794215B2F908003AFC57 /* ScriptingBridge.framework in Frameworks */,
|
44
|
+
5199791915B1F92B003AFC57 /* Cocoa.framework in Frameworks */,
|
45
|
+
);
|
46
|
+
runOnlyForDeploymentPostprocessing = 0;
|
47
|
+
};
|
48
|
+
/* End PBXFrameworksBuildPhase section */
|
49
|
+
|
50
|
+
/* Begin PBXGroup section */
|
51
|
+
5199790915B1F92B003AFC57 = {
|
52
|
+
isa = PBXGroup;
|
53
|
+
children = (
|
54
|
+
5199794B15B302F1003AFC57 /* Terminal.icns */,
|
55
|
+
5199794115B2F908003AFC57 /* ScriptingBridge.framework */,
|
56
|
+
5199791E15B1F92B003AFC57 /* Terminal Notifier */,
|
57
|
+
5199791715B1F92B003AFC57 /* Frameworks */,
|
58
|
+
5199791515B1F92B003AFC57 /* Products */,
|
59
|
+
);
|
60
|
+
sourceTree = "<group>";
|
61
|
+
};
|
62
|
+
5199791515B1F92B003AFC57 /* Products */ = {
|
63
|
+
isa = PBXGroup;
|
64
|
+
children = (
|
65
|
+
5199791415B1F92B003AFC57 /* terminal-notifier.app */,
|
66
|
+
);
|
67
|
+
name = Products;
|
68
|
+
sourceTree = "<group>";
|
69
|
+
};
|
70
|
+
5199791715B1F92B003AFC57 /* Frameworks */ = {
|
71
|
+
isa = PBXGroup;
|
72
|
+
children = (
|
73
|
+
5199791815B1F92B003AFC57 /* Cocoa.framework */,
|
74
|
+
5199791A15B1F92B003AFC57 /* Other Frameworks */,
|
75
|
+
);
|
76
|
+
name = Frameworks;
|
77
|
+
sourceTree = "<group>";
|
78
|
+
};
|
79
|
+
5199791A15B1F92B003AFC57 /* Other Frameworks */ = {
|
80
|
+
isa = PBXGroup;
|
81
|
+
children = (
|
82
|
+
5199791B15B1F92B003AFC57 /* AppKit.framework */,
|
83
|
+
5199791C15B1F92B003AFC57 /* CoreData.framework */,
|
84
|
+
5199791D15B1F92B003AFC57 /* Foundation.framework */,
|
85
|
+
);
|
86
|
+
name = "Other Frameworks";
|
87
|
+
sourceTree = "<group>";
|
88
|
+
};
|
89
|
+
5199791E15B1F92B003AFC57 /* Terminal Notifier */ = {
|
90
|
+
isa = PBXGroup;
|
91
|
+
children = (
|
92
|
+
5199792A15B1F92B003AFC57 /* AppDelegate.h */,
|
93
|
+
5199792B15B1F92B003AFC57 /* AppDelegate.m */,
|
94
|
+
5199792D15B1F92B003AFC57 /* MainMenu.xib */,
|
95
|
+
5199791F15B1F92B003AFC57 /* Supporting Files */,
|
96
|
+
);
|
97
|
+
path = "Terminal Notifier";
|
98
|
+
sourceTree = "<group>";
|
99
|
+
};
|
100
|
+
5199791F15B1F92B003AFC57 /* Supporting Files */ = {
|
101
|
+
isa = PBXGroup;
|
102
|
+
children = (
|
103
|
+
5199792015B1F92B003AFC57 /* Terminal Notifier-Info.plist */,
|
104
|
+
5199792115B1F92B003AFC57 /* InfoPlist.strings */,
|
105
|
+
5199792415B1F92B003AFC57 /* main.m */,
|
106
|
+
5199792615B1F92B003AFC57 /* Terminal Notifier-Prefix.pch */,
|
107
|
+
5199792715B1F92B003AFC57 /* Credits.rtf */,
|
108
|
+
);
|
109
|
+
name = "Supporting Files";
|
110
|
+
sourceTree = "<group>";
|
111
|
+
};
|
112
|
+
/* End PBXGroup section */
|
113
|
+
|
114
|
+
/* Begin PBXNativeTarget section */
|
115
|
+
5199791315B1F92B003AFC57 /* terminal-notifier */ = {
|
116
|
+
isa = PBXNativeTarget;
|
117
|
+
buildConfigurationList = 5199793215B1F92B003AFC57 /* Build configuration list for PBXNativeTarget "terminal-notifier" */;
|
118
|
+
buildPhases = (
|
119
|
+
5199791015B1F92B003AFC57 /* Sources */,
|
120
|
+
5199791115B1F92B003AFC57 /* Frameworks */,
|
121
|
+
5199791215B1F92B003AFC57 /* Resources */,
|
122
|
+
);
|
123
|
+
buildRules = (
|
124
|
+
);
|
125
|
+
dependencies = (
|
126
|
+
);
|
127
|
+
name = "terminal-notifier";
|
128
|
+
productName = "Terminal Notifier";
|
129
|
+
productReference = 5199791415B1F92B003AFC57 /* terminal-notifier.app */;
|
130
|
+
productType = "com.apple.product-type.application";
|
131
|
+
};
|
132
|
+
/* End PBXNativeTarget section */
|
133
|
+
|
134
|
+
/* Begin PBXProject section */
|
135
|
+
5199790B15B1F92B003AFC57 /* Project object */ = {
|
136
|
+
isa = PBXProject;
|
137
|
+
attributes = {
|
138
|
+
LastUpgradeCheck = 0440;
|
139
|
+
ORGANIZATIONNAME = "Eloy Durán";
|
140
|
+
};
|
141
|
+
buildConfigurationList = 5199790E15B1F92B003AFC57 /* Build configuration list for PBXProject "Terminal Notifier" */;
|
142
|
+
compatibilityVersion = "Xcode 3.2";
|
143
|
+
developmentRegion = English;
|
144
|
+
hasScannedForEncodings = 0;
|
145
|
+
knownRegions = (
|
146
|
+
en,
|
147
|
+
);
|
148
|
+
mainGroup = 5199790915B1F92B003AFC57;
|
149
|
+
productRefGroup = 5199791515B1F92B003AFC57 /* Products */;
|
150
|
+
projectDirPath = "";
|
151
|
+
projectRoot = "";
|
152
|
+
targets = (
|
153
|
+
5199791315B1F92B003AFC57 /* terminal-notifier */,
|
154
|
+
);
|
155
|
+
};
|
156
|
+
/* End PBXProject section */
|
157
|
+
|
158
|
+
/* Begin PBXResourcesBuildPhase section */
|
159
|
+
5199791215B1F92B003AFC57 /* Resources */ = {
|
160
|
+
isa = PBXResourcesBuildPhase;
|
161
|
+
buildActionMask = 2147483647;
|
162
|
+
files = (
|
163
|
+
5199792315B1F92B003AFC57 /* InfoPlist.strings in Resources */,
|
164
|
+
5199792915B1F92B003AFC57 /* Credits.rtf in Resources */,
|
165
|
+
5199792F15B1F92B003AFC57 /* MainMenu.xib in Resources */,
|
166
|
+
5199794C15B302F1003AFC57 /* Terminal.icns in Resources */,
|
167
|
+
);
|
168
|
+
runOnlyForDeploymentPostprocessing = 0;
|
169
|
+
};
|
170
|
+
/* End PBXResourcesBuildPhase section */
|
171
|
+
|
172
|
+
/* Begin PBXSourcesBuildPhase section */
|
173
|
+
5199791015B1F92B003AFC57 /* Sources */ = {
|
174
|
+
isa = PBXSourcesBuildPhase;
|
175
|
+
buildActionMask = 2147483647;
|
176
|
+
files = (
|
177
|
+
5199792515B1F92B003AFC57 /* main.m in Sources */,
|
178
|
+
5199792C15B1F92B003AFC57 /* AppDelegate.m in Sources */,
|
179
|
+
);
|
180
|
+
runOnlyForDeploymentPostprocessing = 0;
|
181
|
+
};
|
182
|
+
/* End PBXSourcesBuildPhase section */
|
183
|
+
|
184
|
+
/* Begin PBXVariantGroup section */
|
185
|
+
5199792115B1F92B003AFC57 /* InfoPlist.strings */ = {
|
186
|
+
isa = PBXVariantGroup;
|
187
|
+
children = (
|
188
|
+
5199792215B1F92B003AFC57 /* en */,
|
189
|
+
);
|
190
|
+
name = InfoPlist.strings;
|
191
|
+
sourceTree = "<group>";
|
192
|
+
};
|
193
|
+
5199792715B1F92B003AFC57 /* Credits.rtf */ = {
|
194
|
+
isa = PBXVariantGroup;
|
195
|
+
children = (
|
196
|
+
5199792815B1F92B003AFC57 /* en */,
|
197
|
+
);
|
198
|
+
name = Credits.rtf;
|
199
|
+
sourceTree = "<group>";
|
200
|
+
};
|
201
|
+
5199792D15B1F92B003AFC57 /* MainMenu.xib */ = {
|
202
|
+
isa = PBXVariantGroup;
|
203
|
+
children = (
|
204
|
+
5199792E15B1F92B003AFC57 /* en */,
|
205
|
+
);
|
206
|
+
name = MainMenu.xib;
|
207
|
+
sourceTree = "<group>";
|
208
|
+
};
|
209
|
+
/* End PBXVariantGroup section */
|
210
|
+
|
211
|
+
/* Begin XCBuildConfiguration section */
|
212
|
+
5199793015B1F92B003AFC57 /* Debug */ = {
|
213
|
+
isa = XCBuildConfiguration;
|
214
|
+
buildSettings = {
|
215
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
216
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
217
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
218
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
219
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
220
|
+
COPY_PHASE_STRIP = NO;
|
221
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
222
|
+
GCC_DYNAMIC_NO_PIC = NO;
|
223
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
224
|
+
GCC_OPTIMIZATION_LEVEL = 0;
|
225
|
+
GCC_PREPROCESSOR_DEFINITIONS = (
|
226
|
+
"DEBUG=1",
|
227
|
+
"$(inherited)",
|
228
|
+
);
|
229
|
+
GCC_SYMBOLS_PRIVATE_EXTERN = NO;
|
230
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
231
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
232
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
233
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
234
|
+
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
235
|
+
ONLY_ACTIVE_ARCH = YES;
|
236
|
+
SDKROOT = macosx;
|
237
|
+
};
|
238
|
+
name = Debug;
|
239
|
+
};
|
240
|
+
5199793115B1F92B003AFC57 /* Release */ = {
|
241
|
+
isa = XCBuildConfiguration;
|
242
|
+
buildSettings = {
|
243
|
+
ALWAYS_SEARCH_USER_PATHS = NO;
|
244
|
+
ARCHS = "$(ARCHS_STANDARD_64_BIT)";
|
245
|
+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
|
246
|
+
CLANG_ENABLE_OBJC_ARC = YES;
|
247
|
+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
|
248
|
+
COPY_PHASE_STRIP = YES;
|
249
|
+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
|
250
|
+
GCC_C_LANGUAGE_STANDARD = gnu99;
|
251
|
+
GCC_ENABLE_OBJC_EXCEPTIONS = YES;
|
252
|
+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
|
253
|
+
GCC_WARN_ABOUT_RETURN_TYPE = YES;
|
254
|
+
GCC_WARN_UNINITIALIZED_AUTOS = YES;
|
255
|
+
GCC_WARN_UNUSED_VARIABLE = YES;
|
256
|
+
MACOSX_DEPLOYMENT_TARGET = 10.8;
|
257
|
+
SDKROOT = macosx;
|
258
|
+
};
|
259
|
+
name = Release;
|
260
|
+
};
|
261
|
+
5199793315B1F92B003AFC57 /* Debug */ = {
|
262
|
+
isa = XCBuildConfiguration;
|
263
|
+
buildSettings = {
|
264
|
+
COMBINE_HIDPI_IMAGES = YES;
|
265
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
266
|
+
GCC_PREFIX_HEADER = "Terminal Notifier/Terminal Notifier-Prefix.pch";
|
267
|
+
INFOPLIST_FILE = "Terminal Notifier/Terminal Notifier-Info.plist";
|
268
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
269
|
+
PROVISIONING_PROFILE = "";
|
270
|
+
WRAPPER_EXTENSION = app;
|
271
|
+
};
|
272
|
+
name = Debug;
|
273
|
+
};
|
274
|
+
5199793415B1F92B003AFC57 /* Release */ = {
|
275
|
+
isa = XCBuildConfiguration;
|
276
|
+
buildSettings = {
|
277
|
+
COMBINE_HIDPI_IMAGES = YES;
|
278
|
+
GCC_PRECOMPILE_PREFIX_HEADER = YES;
|
279
|
+
GCC_PREFIX_HEADER = "Terminal Notifier/Terminal Notifier-Prefix.pch";
|
280
|
+
INFOPLIST_FILE = "Terminal Notifier/Terminal Notifier-Info.plist";
|
281
|
+
PRODUCT_NAME = "$(TARGET_NAME)";
|
282
|
+
PROVISIONING_PROFILE = "";
|
283
|
+
WRAPPER_EXTENSION = app;
|
284
|
+
};
|
285
|
+
name = Release;
|
286
|
+
};
|
287
|
+
/* End XCBuildConfiguration section */
|
288
|
+
|
289
|
+
/* Begin XCConfigurationList section */
|
290
|
+
5199790E15B1F92B003AFC57 /* Build configuration list for PBXProject "Terminal Notifier" */ = {
|
291
|
+
isa = XCConfigurationList;
|
292
|
+
buildConfigurations = (
|
293
|
+
5199793015B1F92B003AFC57 /* Debug */,
|
294
|
+
5199793115B1F92B003AFC57 /* Release */,
|
295
|
+
);
|
296
|
+
defaultConfigurationIsVisible = 0;
|
297
|
+
defaultConfigurationName = Release;
|
298
|
+
};
|
299
|
+
5199793215B1F92B003AFC57 /* Build configuration list for PBXNativeTarget "terminal-notifier" */ = {
|
300
|
+
isa = XCConfigurationList;
|
301
|
+
buildConfigurations = (
|
302
|
+
5199793315B1F92B003AFC57 /* Debug */,
|
303
|
+
5199793415B1F92B003AFC57 /* Release */,
|
304
|
+
);
|
305
|
+
defaultConfigurationIsVisible = 0;
|
306
|
+
defaultConfigurationName = Release;
|
307
|
+
};
|
308
|
+
/* End XCConfigurationList section */
|
309
|
+
};
|
310
|
+
rootObject = 5199790B15B1F92B003AFC57 /* Project object */;
|
311
|
+
}
|
@@ -0,0 +1,140 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<Scheme
|
3
|
+
LastUpgradeVersion = "0440"
|
4
|
+
version = "1.3">
|
5
|
+
<BuildAction
|
6
|
+
parallelizeBuildables = "YES"
|
7
|
+
buildImplicitDependencies = "YES">
|
8
|
+
<BuildActionEntries>
|
9
|
+
<BuildActionEntry
|
10
|
+
buildForTesting = "YES"
|
11
|
+
buildForRunning = "YES"
|
12
|
+
buildForProfiling = "YES"
|
13
|
+
buildForArchiving = "YES"
|
14
|
+
buildForAnalyzing = "YES">
|
15
|
+
<BuildableReference
|
16
|
+
BuildableIdentifier = "primary"
|
17
|
+
BlueprintIdentifier = "5199791315B1F92B003AFC57"
|
18
|
+
BuildableName = "terminal-notifier.app"
|
19
|
+
BlueprintName = "terminal-notifier"
|
20
|
+
ReferencedContainer = "container:Terminal Notifier.xcodeproj">
|
21
|
+
</BuildableReference>
|
22
|
+
</BuildActionEntry>
|
23
|
+
</BuildActionEntries>
|
24
|
+
</BuildAction>
|
25
|
+
<TestAction
|
26
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
27
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
28
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
29
|
+
buildConfiguration = "Debug">
|
30
|
+
<Testables>
|
31
|
+
</Testables>
|
32
|
+
<MacroExpansion>
|
33
|
+
<BuildableReference
|
34
|
+
BuildableIdentifier = "primary"
|
35
|
+
BlueprintIdentifier = "5199791315B1F92B003AFC57"
|
36
|
+
BuildableName = "terminal-notifier.app"
|
37
|
+
BlueprintName = "terminal-notifier"
|
38
|
+
ReferencedContainer = "container:Terminal Notifier.xcodeproj">
|
39
|
+
</BuildableReference>
|
40
|
+
</MacroExpansion>
|
41
|
+
</TestAction>
|
42
|
+
<LaunchAction
|
43
|
+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
|
44
|
+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
|
45
|
+
launchStyle = "0"
|
46
|
+
useCustomWorkingDirectory = "NO"
|
47
|
+
buildConfiguration = "Debug"
|
48
|
+
ignoresPersistentStateOnLaunch = "NO"
|
49
|
+
debugDocumentVersioning = "NO"
|
50
|
+
allowLocationSimulation = "YES">
|
51
|
+
<BuildableProductRunnable>
|
52
|
+
<BuildableReference
|
53
|
+
BuildableIdentifier = "primary"
|
54
|
+
BlueprintIdentifier = "5199791315B1F92B003AFC57"
|
55
|
+
BuildableName = "terminal-notifier.app"
|
56
|
+
BlueprintName = "terminal-notifier"
|
57
|
+
ReferencedContainer = "container:Terminal Notifier.xcodeproj">
|
58
|
+
</BuildableReference>
|
59
|
+
</BuildableProductRunnable>
|
60
|
+
<CommandLineArguments>
|
61
|
+
<CommandLineArgument
|
62
|
+
argument = "-group abcde"
|
63
|
+
isEnabled = "NO">
|
64
|
+
</CommandLineArgument>
|
65
|
+
<CommandLineArgument
|
66
|
+
argument = "-help"
|
67
|
+
isEnabled = "NO">
|
68
|
+
</CommandLineArgument>
|
69
|
+
<CommandLineArgument
|
70
|
+
argument = "-sound default"
|
71
|
+
isEnabled = "NO">
|
72
|
+
</CommandLineArgument>
|
73
|
+
<CommandLineArgument
|
74
|
+
argument = "-list ALL"
|
75
|
+
isEnabled = "NO">
|
76
|
+
</CommandLineArgument>
|
77
|
+
<CommandLineArgument
|
78
|
+
argument = "-list abcde"
|
79
|
+
isEnabled = "NO">
|
80
|
+
</CommandLineArgument>
|
81
|
+
<CommandLineArgument
|
82
|
+
argument = "-remove abcde"
|
83
|
+
isEnabled = "NO">
|
84
|
+
</CommandLineArgument>
|
85
|
+
<CommandLineArgument
|
86
|
+
argument = "-open 'http://google.com/search?q=http status codes'"
|
87
|
+
isEnabled = "YES">
|
88
|
+
</CommandLineArgument>
|
89
|
+
<CommandLineArgument
|
90
|
+
argument = "-execute 'say "OMG"'"
|
91
|
+
isEnabled = "NO">
|
92
|
+
</CommandLineArgument>
|
93
|
+
<CommandLineArgument
|
94
|
+
argument = "-execute 'ls -l'"
|
95
|
+
isEnabled = "NO">
|
96
|
+
</CommandLineArgument>
|
97
|
+
<CommandLineArgument
|
98
|
+
argument = "-title Kicker"
|
99
|
+
isEnabled = "NO">
|
100
|
+
</CommandLineArgument>
|
101
|
+
<CommandLineArgument
|
102
|
+
argument = "-message 'Execute: rake spec'"
|
103
|
+
isEnabled = "NO">
|
104
|
+
</CommandLineArgument>
|
105
|
+
<CommandLineArgument
|
106
|
+
argument = "-activate com.apple.Safari"
|
107
|
+
isEnabled = "NO">
|
108
|
+
</CommandLineArgument>
|
109
|
+
<CommandLineArgument
|
110
|
+
argument = "-sender com.apple.Safari"
|
111
|
+
isEnabled = "NO">
|
112
|
+
</CommandLineArgument>
|
113
|
+
</CommandLineArguments>
|
114
|
+
<AdditionalOptions>
|
115
|
+
</AdditionalOptions>
|
116
|
+
</LaunchAction>
|
117
|
+
<ProfileAction
|
118
|
+
shouldUseLaunchSchemeArgsEnv = "YES"
|
119
|
+
savedToolIdentifier = ""
|
120
|
+
useCustomWorkingDirectory = "NO"
|
121
|
+
buildConfiguration = "Release"
|
122
|
+
debugDocumentVersioning = "YES">
|
123
|
+
<BuildableProductRunnable>
|
124
|
+
<BuildableReference
|
125
|
+
BuildableIdentifier = "primary"
|
126
|
+
BlueprintIdentifier = "5199791315B1F92B003AFC57"
|
127
|
+
BuildableName = "terminal-notifier.app"
|
128
|
+
BlueprintName = "terminal-notifier"
|
129
|
+
ReferencedContainer = "container:Terminal Notifier.xcodeproj">
|
130
|
+
</BuildableReference>
|
131
|
+
</BuildableProductRunnable>
|
132
|
+
</ProfileAction>
|
133
|
+
<AnalyzeAction
|
134
|
+
buildConfiguration = "Debug">
|
135
|
+
</AnalyzeAction>
|
136
|
+
<ArchiveAction
|
137
|
+
buildConfiguration = "Release"
|
138
|
+
revealArchiveInOrganizer = "YES">
|
139
|
+
</ArchiveAction>
|
140
|
+
</Scheme>
|