Skip to content

Commit 78ad23b

Browse files
committed
Merge pull request #32 from CezaryKopacz/carthage_support
Added Carthage support
2 parents b87b2a5 + f969f3e commit 78ad23b

File tree

6 files changed

+478
-0
lines changed

6 files changed

+478
-0
lines changed

Action.xcodeproj/project.pbxproj

Lines changed: 345 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,345 @@
1+
// !$*UTF8*$!
2+
{
3+
archiveVersion = 1;
4+
classes = {
5+
};
6+
objectVersion = 46;
7+
objects = {
8+
9+
/* Begin PBXBuildFile section */
10+
BE73AD241CDCD102006F8B98 /* Action.h in Headers */ = {isa = PBXBuildFile; fileRef = BE73AD231CDCD102006F8B98 /* Action.h */; settings = {ATTRIBUTES = (Public, ); }; };
11+
BE73AD371CDCEAE0006F8B98 /* Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE73AD331CDCEAE0006F8B98 /* Action.swift */; };
12+
BE73AD381CDCEAE0006F8B98 /* AlertAction.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE73AD341CDCEAE0006F8B98 /* AlertAction.swift */; };
13+
BE73AD391CDCEAE0006F8B98 /* UIBarButtonItem+Action.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE73AD351CDCEAE0006F8B98 /* UIBarButtonItem+Action.swift */; };
14+
BE73AD3A1CDCEAE0006F8B98 /* UIButton+Rx.swift in Sources */ = {isa = PBXBuildFile; fileRef = BE73AD361CDCEAE0006F8B98 /* UIButton+Rx.swift */; };
15+
BE73AD3D1CDCF5E0006F8B98 /* RxBlocking.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE73AD3C1CDCF5E0006F8B98 /* RxBlocking.framework */; };
16+
BE73AD3F1CDCF5F0006F8B98 /* RxCocoa.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE73AD3E1CDCF5F0006F8B98 /* RxCocoa.framework */; };
17+
BE73AD411CDCF5FE006F8B98 /* RxSwift.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BE73AD401CDCF5FE006F8B98 /* RxSwift.framework */; };
18+
/* End PBXBuildFile section */
19+
20+
/* Begin PBXFileReference section */
21+
BE73AD201CDCD101006F8B98 /* Action.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Action.framework; sourceTree = BUILT_PRODUCTS_DIR; };
22+
BE73AD231CDCD102006F8B98 /* Action.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = Action.h; sourceTree = "<group>"; };
23+
BE73AD251CDCD102006F8B98 /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
24+
BE73AD331CDCEAE0006F8B98 /* Action.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Action.swift; sourceTree = SOURCE_ROOT; };
25+
BE73AD341CDCEAE0006F8B98 /* AlertAction.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AlertAction.swift; sourceTree = SOURCE_ROOT; };
26+
BE73AD351CDCEAE0006F8B98 /* UIBarButtonItem+Action.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIBarButtonItem+Action.swift"; sourceTree = SOURCE_ROOT; };
27+
BE73AD361CDCEAE0006F8B98 /* UIButton+Rx.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = "UIButton+Rx.swift"; sourceTree = SOURCE_ROOT; };
28+
BE73AD3C1CDCF5E0006F8B98 /* RxBlocking.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxBlocking.framework; path = Carthage/Build/iOS/RxBlocking.framework; sourceTree = "<group>"; };
29+
BE73AD3E1CDCF5F0006F8B98 /* RxCocoa.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxCocoa.framework; path = Carthage/Build/iOS/RxCocoa.framework; sourceTree = "<group>"; };
30+
BE73AD401CDCF5FE006F8B98 /* RxSwift.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = RxSwift.framework; path = Carthage/Build/iOS/RxSwift.framework; sourceTree = "<group>"; };
31+
/* End PBXFileReference section */
32+
33+
/* Begin PBXFrameworksBuildPhase section */
34+
BE73AD1C1CDCD101006F8B98 /* Frameworks */ = {
35+
isa = PBXFrameworksBuildPhase;
36+
buildActionMask = 2147483647;
37+
files = (
38+
BE73AD411CDCF5FE006F8B98 /* RxSwift.framework in Frameworks */,
39+
BE73AD3F1CDCF5F0006F8B98 /* RxCocoa.framework in Frameworks */,
40+
BE73AD3D1CDCF5E0006F8B98 /* RxBlocking.framework in Frameworks */,
41+
);
42+
runOnlyForDeploymentPostprocessing = 0;
43+
};
44+
/* End PBXFrameworksBuildPhase section */
45+
46+
/* Begin PBXGroup section */
47+
BE73AD161CDCD101006F8B98 = {
48+
isa = PBXGroup;
49+
children = (
50+
BE73AD401CDCF5FE006F8B98 /* RxSwift.framework */,
51+
BE73AD3E1CDCF5F0006F8B98 /* RxCocoa.framework */,
52+
BE73AD3C1CDCF5E0006F8B98 /* RxBlocking.framework */,
53+
BE73AD221CDCD102006F8B98 /* Action */,
54+
BE73AD211CDCD101006F8B98 /* Products */,
55+
);
56+
sourceTree = "<group>";
57+
};
58+
BE73AD211CDCD101006F8B98 /* Products */ = {
59+
isa = PBXGroup;
60+
children = (
61+
BE73AD201CDCD101006F8B98 /* Action.framework */,
62+
);
63+
name = Products;
64+
sourceTree = "<group>";
65+
};
66+
BE73AD221CDCD102006F8B98 /* Action */ = {
67+
isa = PBXGroup;
68+
children = (
69+
BE73AD331CDCEAE0006F8B98 /* Action.swift */,
70+
BE73AD341CDCEAE0006F8B98 /* AlertAction.swift */,
71+
BE73AD351CDCEAE0006F8B98 /* UIBarButtonItem+Action.swift */,
72+
BE73AD361CDCEAE0006F8B98 /* UIButton+Rx.swift */,
73+
BE73AD231CDCD102006F8B98 /* Action.h */,
74+
BE73AD251CDCD102006F8B98 /* Info.plist */,
75+
);
76+
path = Action;
77+
sourceTree = "<group>";
78+
};
79+
/* End PBXGroup section */
80+
81+
/* Begin PBXHeadersBuildPhase section */
82+
BE73AD1D1CDCD101006F8B98 /* Headers */ = {
83+
isa = PBXHeadersBuildPhase;
84+
buildActionMask = 2147483647;
85+
files = (
86+
BE73AD241CDCD102006F8B98 /* Action.h in Headers */,
87+
);
88+
runOnlyForDeploymentPostprocessing = 0;
89+
};
90+
/* End PBXHeadersBuildPhase section */
91+
92+
/* Begin PBXNativeTarget section */
93+
BE73AD1F1CDCD101006F8B98 /* Action */ = {
94+
isa = PBXNativeTarget;
95+
buildConfigurationList = BE73AD281CDCD102006F8B98 /* Build configuration list for PBXNativeTarget "Action" */;
96+
buildPhases = (
97+
BE73AD1B1CDCD101006F8B98 /* Sources */,
98+
BE73AD1C1CDCD101006F8B98 /* Frameworks */,
99+
BE73AD1D1CDCD101006F8B98 /* Headers */,
100+
BE73AD1E1CDCD101006F8B98 /* Resources */,
101+
BE73AD3B1CDCF52C006F8B98 /* ShellScript */,
102+
);
103+
buildRules = (
104+
);
105+
dependencies = (
106+
);
107+
name = Action;
108+
productName = Action;
109+
productReference = BE73AD201CDCD101006F8B98 /* Action.framework */;
110+
productType = "com.apple.product-type.framework";
111+
};
112+
/* End PBXNativeTarget section */
113+
114+
/* Begin PBXProject section */
115+
BE73AD171CDCD101006F8B98 /* Project object */ = {
116+
isa = PBXProject;
117+
attributes = {
118+
LastUpgradeCheck = 0730;
119+
ORGANIZATIONNAME = CezaryKopacz;
120+
TargetAttributes = {
121+
BE73AD1F1CDCD101006F8B98 = {
122+
CreatedOnToolsVersion = 7.3;
123+
};
124+
};
125+
};
126+
buildConfigurationList = BE73AD1A1CDCD101006F8B98 /* Build configuration list for PBXProject "Action" */;
127+
compatibilityVersion = "Xcode 3.2";
128+
developmentRegion = English;
129+
hasScannedForEncodings = 0;
130+
knownRegions = (
131+
en,
132+
);
133+
mainGroup = BE73AD161CDCD101006F8B98;
134+
productRefGroup = BE73AD211CDCD101006F8B98 /* Products */;
135+
projectDirPath = "";
136+
projectRoot = "";
137+
targets = (
138+
BE73AD1F1CDCD101006F8B98 /* Action */,
139+
);
140+
};
141+
/* End PBXProject section */
142+
143+
/* Begin PBXResourcesBuildPhase section */
144+
BE73AD1E1CDCD101006F8B98 /* Resources */ = {
145+
isa = PBXResourcesBuildPhase;
146+
buildActionMask = 2147483647;
147+
files = (
148+
);
149+
runOnlyForDeploymentPostprocessing = 0;
150+
};
151+
/* End PBXResourcesBuildPhase section */
152+
153+
/* Begin PBXShellScriptBuildPhase section */
154+
BE73AD3B1CDCF52C006F8B98 /* ShellScript */ = {
155+
isa = PBXShellScriptBuildPhase;
156+
buildActionMask = 2147483647;
157+
files = (
158+
);
159+
inputPaths = (
160+
"$(SRCROOT)/Carthage/Build/iOS/RxCocoa.framework",
161+
"$(SRCROOT)/Carthage/Build/iOS/RxSwift.framework",
162+
"$(SRCROOT)/Carthage/Build/iOS/RxBlocking.framework",
163+
);
164+
outputPaths = (
165+
);
166+
runOnlyForDeploymentPostprocessing = 0;
167+
shellPath = /bin/sh;
168+
shellScript = "/usr/local/bin/carthage copy-frameworks";
169+
};
170+
/* End PBXShellScriptBuildPhase section */
171+
172+
/* Begin PBXSourcesBuildPhase section */
173+
BE73AD1B1CDCD101006F8B98 /* Sources */ = {
174+
isa = PBXSourcesBuildPhase;
175+
buildActionMask = 2147483647;
176+
files = (
177+
BE73AD381CDCEAE0006F8B98 /* AlertAction.swift in Sources */,
178+
BE73AD391CDCEAE0006F8B98 /* UIBarButtonItem+Action.swift in Sources */,
179+
BE73AD371CDCEAE0006F8B98 /* Action.swift in Sources */,
180+
BE73AD3A1CDCEAE0006F8B98 /* UIButton+Rx.swift in Sources */,
181+
);
182+
runOnlyForDeploymentPostprocessing = 0;
183+
};
184+
/* End PBXSourcesBuildPhase section */
185+
186+
/* Begin XCBuildConfiguration section */
187+
BE73AD261CDCD102006F8B98 /* Debug */ = {
188+
isa = XCBuildConfiguration;
189+
buildSettings = {
190+
ALWAYS_SEARCH_USER_PATHS = NO;
191+
CLANG_ANALYZER_NONNULL = YES;
192+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
193+
CLANG_CXX_LIBRARY = "libc++";
194+
CLANG_ENABLE_MODULES = YES;
195+
CLANG_ENABLE_OBJC_ARC = YES;
196+
CLANG_WARN_BOOL_CONVERSION = YES;
197+
CLANG_WARN_CONSTANT_CONVERSION = YES;
198+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
199+
CLANG_WARN_EMPTY_BODY = YES;
200+
CLANG_WARN_ENUM_CONVERSION = YES;
201+
CLANG_WARN_INT_CONVERSION = YES;
202+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
203+
CLANG_WARN_UNREACHABLE_CODE = YES;
204+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
205+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
206+
COPY_PHASE_STRIP = NO;
207+
CURRENT_PROJECT_VERSION = 1;
208+
DEBUG_INFORMATION_FORMAT = dwarf;
209+
ENABLE_STRICT_OBJC_MSGSEND = YES;
210+
ENABLE_TESTABILITY = YES;
211+
GCC_C_LANGUAGE_STANDARD = gnu99;
212+
GCC_DYNAMIC_NO_PIC = NO;
213+
GCC_NO_COMMON_BLOCKS = YES;
214+
GCC_OPTIMIZATION_LEVEL = 0;
215+
GCC_PREPROCESSOR_DEFINITIONS = (
216+
"DEBUG=1",
217+
"$(inherited)",
218+
);
219+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
220+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
221+
GCC_WARN_UNDECLARED_SELECTOR = YES;
222+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
223+
GCC_WARN_UNUSED_FUNCTION = YES;
224+
GCC_WARN_UNUSED_VARIABLE = YES;
225+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
226+
MTL_ENABLE_DEBUG_INFO = YES;
227+
ONLY_ACTIVE_ARCH = YES;
228+
SDKROOT = iphoneos;
229+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
230+
TARGETED_DEVICE_FAMILY = "1,2";
231+
VERSIONING_SYSTEM = "apple-generic";
232+
VERSION_INFO_PREFIX = "";
233+
};
234+
name = Debug;
235+
};
236+
BE73AD271CDCD102006F8B98 /* Release */ = {
237+
isa = XCBuildConfiguration;
238+
buildSettings = {
239+
ALWAYS_SEARCH_USER_PATHS = NO;
240+
CLANG_ANALYZER_NONNULL = YES;
241+
CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
242+
CLANG_CXX_LIBRARY = "libc++";
243+
CLANG_ENABLE_MODULES = YES;
244+
CLANG_ENABLE_OBJC_ARC = YES;
245+
CLANG_WARN_BOOL_CONVERSION = YES;
246+
CLANG_WARN_CONSTANT_CONVERSION = YES;
247+
CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR;
248+
CLANG_WARN_EMPTY_BODY = YES;
249+
CLANG_WARN_ENUM_CONVERSION = YES;
250+
CLANG_WARN_INT_CONVERSION = YES;
251+
CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR;
252+
CLANG_WARN_UNREACHABLE_CODE = YES;
253+
CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
254+
"CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
255+
COPY_PHASE_STRIP = NO;
256+
CURRENT_PROJECT_VERSION = 1;
257+
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
258+
ENABLE_NS_ASSERTIONS = NO;
259+
ENABLE_STRICT_OBJC_MSGSEND = YES;
260+
GCC_C_LANGUAGE_STANDARD = gnu99;
261+
GCC_NO_COMMON_BLOCKS = YES;
262+
GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
263+
GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR;
264+
GCC_WARN_UNDECLARED_SELECTOR = YES;
265+
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
266+
GCC_WARN_UNUSED_FUNCTION = YES;
267+
GCC_WARN_UNUSED_VARIABLE = YES;
268+
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
269+
MTL_ENABLE_DEBUG_INFO = NO;
270+
SDKROOT = iphoneos;
271+
TARGETED_DEVICE_FAMILY = "1,2";
272+
VALIDATE_PRODUCT = YES;
273+
VERSIONING_SYSTEM = "apple-generic";
274+
VERSION_INFO_PREFIX = "";
275+
};
276+
name = Release;
277+
};
278+
BE73AD291CDCD102006F8B98 /* Debug */ = {
279+
isa = XCBuildConfiguration;
280+
buildSettings = {
281+
CLANG_ENABLE_MODULES = YES;
282+
DEFINES_MODULE = YES;
283+
DYLIB_COMPATIBILITY_VERSION = 1;
284+
DYLIB_CURRENT_VERSION = 1;
285+
DYLIB_INSTALL_NAME_BASE = "@rpath";
286+
FRAMEWORK_SEARCH_PATHS = (
287+
"$(inherited)",
288+
"$(PROJECT_DIR)/Carthage/Build/iOS",
289+
);
290+
INFOPLIST_FILE = Action/Info.plist;
291+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
292+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
293+
PRODUCT_BUNDLE_IDENTIFIER = com.ashfurrow.Action;
294+
PRODUCT_NAME = "$(TARGET_NAME)";
295+
SKIP_INSTALL = YES;
296+
SWIFT_OPTIMIZATION_LEVEL = "-Onone";
297+
};
298+
name = Debug;
299+
};
300+
BE73AD2A1CDCD102006F8B98 /* Release */ = {
301+
isa = XCBuildConfiguration;
302+
buildSettings = {
303+
CLANG_ENABLE_MODULES = YES;
304+
DEFINES_MODULE = YES;
305+
DYLIB_COMPATIBILITY_VERSION = 1;
306+
DYLIB_CURRENT_VERSION = 1;
307+
DYLIB_INSTALL_NAME_BASE = "@rpath";
308+
FRAMEWORK_SEARCH_PATHS = (
309+
"$(inherited)",
310+
"$(PROJECT_DIR)/Carthage/Build/iOS",
311+
);
312+
INFOPLIST_FILE = Action/Info.plist;
313+
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
314+
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
315+
PRODUCT_BUNDLE_IDENTIFIER = com.ashfurrow.Action;
316+
PRODUCT_NAME = "$(TARGET_NAME)";
317+
SKIP_INSTALL = YES;
318+
};
319+
name = Release;
320+
};
321+
/* End XCBuildConfiguration section */
322+
323+
/* Begin XCConfigurationList section */
324+
BE73AD1A1CDCD101006F8B98 /* Build configuration list for PBXProject "Action" */ = {
325+
isa = XCConfigurationList;
326+
buildConfigurations = (
327+
BE73AD261CDCD102006F8B98 /* Debug */,
328+
BE73AD271CDCD102006F8B98 /* Release */,
329+
);
330+
defaultConfigurationIsVisible = 0;
331+
defaultConfigurationName = Release;
332+
};
333+
BE73AD281CDCD102006F8B98 /* Build configuration list for PBXNativeTarget "Action" */ = {
334+
isa = XCConfigurationList;
335+
buildConfigurations = (
336+
BE73AD291CDCD102006F8B98 /* Debug */,
337+
BE73AD2A1CDCD102006F8B98 /* Release */,
338+
);
339+
defaultConfigurationIsVisible = 0;
340+
defaultConfigurationName = Release;
341+
};
342+
/* End XCConfigurationList section */
343+
};
344+
rootObject = BE73AD171CDCD101006F8B98 /* Project object */;
345+
}

Action.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)