Skip to content

Commit

Permalink
initial alamofire impl
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-stripe committed Feb 26, 2015
1 parent 443c830 commit 387d725
Show file tree
Hide file tree
Showing 3 changed files with 1,704 additions and 18 deletions.
12 changes: 12 additions & 0 deletions Example/Stripe iOS Example (Simple).xcodeproj/project.pbxproj
Expand Up @@ -14,6 +14,7 @@
042CA41F1A685E8D00D778E7 /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 042CA4171A685E8D00D778E7 /* Main.storyboard */; };
042CA4201A685E8D00D778E7 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 042CA4191A685E8D00D778E7 /* Images.xcassets */; };
042CA4221A685E8D00D778E7 /* ViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 042CA41C1A685E8D00D778E7 /* ViewController.swift */; };
048BC5041A9BC38400B2FDC3 /* Alamofire.swift in Sources */ = {isa = PBXBuildFile; fileRef = 048BC5031A9BC38400B2FDC3 /* Alamofire.swift */; };
04D0761D1A69E66F00094431 /* Stripe.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 04D076191A69C14700094431 /* Stripe.framework */; };
04D0761E1A69E66F00094431 /* Stripe.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = 04D076191A69C14700094431 /* Stripe.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; };
/* End PBXBuildFile section */
Expand Down Expand Up @@ -43,6 +44,7 @@
042CA41B1A685E8D00D778E7 /* Stripe iOS Example (Simple)-Bridging-Header.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = "Stripe iOS Example (Simple)-Bridging-Header.h"; sourceTree = "<group>"; };
042CA41C1A685E8D00D778E7 /* ViewController.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ViewController.swift; sourceTree = "<group>"; };
04823F781A6849200098400B /* Stripe iOS Example (Simple).app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "Stripe iOS Example (Simple).app"; sourceTree = BUILT_PRODUCTS_DIR; };
048BC5031A9BC38400B2FDC3 /* Alamofire.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = Alamofire.swift; sourceTree = "<group>"; };
04D075D91A69B82B00094431 /* Stripe iOS Example (Simple).entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.xml; path = "Stripe iOS Example (Simple).entitlements"; sourceTree = "<group>"; };
04D076191A69C14700094431 /* Stripe.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; path = Stripe.framework; sourceTree = BUILT_PRODUCTS_DIR; };
/* End PBXFileReference section */
Expand All @@ -65,6 +67,7 @@
042CA4131A685E8D00D778E7 /* Stripe iOS Example (Simple) */ = {
isa = PBXGroup;
children = (
048BC5021A9BC38400B2FDC3 /* Vendor */,
042CA4141A685E8D00D778E7 /* AppDelegate.swift */,
042CA41C1A685E8D00D778E7 /* ViewController.swift */,
042CA4171A685E8D00D778E7 /* Main.storyboard */,
Expand Down Expand Up @@ -104,6 +107,14 @@
name = Frameworks;
sourceTree = "<group>";
};
048BC5021A9BC38400B2FDC3 /* Vendor */ = {
isa = PBXGroup;
children = (
048BC5031A9BC38400B2FDC3 /* Alamofire.swift */,
);
path = Vendor;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down Expand Up @@ -182,6 +193,7 @@
isa = PBXSourcesBuildPhase;
buildActionMask = 2147483647;
files = (
048BC5041A9BC38400B2FDC3 /* Alamofire.swift in Sources */,
042CA4221A685E8D00D778E7 /* ViewController.swift in Sources */,
042CA41D1A685E8D00D778E7 /* AppDelegate.swift in Sources */,
);
Expand Down

0 comments on commit 387d725

Please sign in to comment.