segue_handler_plugin 0.0.1

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 (51) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +30 -0
  3. data/Example/.ruby-version +1 -0
  4. data/Example/Gemfile +5 -0
  5. data/Example/Gemfile.lock +71 -0
  6. data/Example/Podfile +6 -0
  7. data/Example/Podfile.lock +14 -0
  8. data/Example/Pods/Headers/Private/WillowTreeSegueHandler/SegueHandler.h +19 -0
  9. data/Example/Pods/Local Podspecs/WillowTreeSegueHandler.podspec.json +25 -0
  10. data/Example/Pods/Manifest.lock +14 -0
  11. data/Example/Pods/Pods.xcodeproj/project.pbxproj +523 -0
  12. data/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/WillowTreeSegueHandler.xcscheme +60 -0
  13. data/Example/Pods/Target Support Files/Pods/Info.plist +26 -0
  14. data/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown +26 -0
  15. data/Example/Pods/Target Support Files/Pods/Pods-acknowledgements.plist +56 -0
  16. data/Example/Pods/Target Support Files/Pods/Pods-dummy.m +5 -0
  17. data/Example/Pods/Target Support Files/Pods/Pods-frameworks.sh +91 -0
  18. data/Example/Pods/Target Support Files/Pods/Pods-resources.sh +95 -0
  19. data/Example/Pods/Target Support Files/Pods/Pods-umbrella.h +6 -0
  20. data/Example/Pods/Target Support Files/Pods/Pods.debug.xcconfig +8 -0
  21. data/Example/Pods/Target Support Files/Pods/Pods.modulemap +6 -0
  22. data/Example/Pods/Target Support Files/Pods/Pods.release.xcconfig +8 -0
  23. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/Info.plist +26 -0
  24. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler-dummy.m +5 -0
  25. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler-prefix.pch +4 -0
  26. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler-umbrella.h +7 -0
  27. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler.modulemap +6 -0
  28. data/Example/Pods/Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler.xcconfig +5 -0
  29. data/Example/SegueBuilder.xcodeproj/project.pbxproj +390 -0
  30. data/Example/SegueBuilder.xcodeproj/project.xcworkspace/contents.xcworkspacedata +7 -0
  31. data/Example/SegueBuilder.xcworkspace/contents.xcworkspacedata +10 -0
  32. data/Example/SegueBuilder/AppDelegate.swift +49 -0
  33. data/Example/SegueBuilder/Assets.xcassets/AppIcon.appiconset/Contents.json +73 -0
  34. data/Example/SegueBuilder/Base.lproj/LaunchScreen.storyboard +27 -0
  35. data/Example/SegueBuilder/Base.lproj/Main.storyboard +151 -0
  36. data/Example/SegueBuilder/Info.plist +45 -0
  37. data/Example/SegueBuilder/SegueExtensions.swift +57 -0
  38. data/Example/SegueBuilder/ViewControllers.swift +77 -0
  39. data/Example/Storyboards.swift +0 -0
  40. data/Example/test.sh +20 -0
  41. data/LICENSE +19 -0
  42. data/README.md +75 -0
  43. data/WillowTreeSegueHandler.podspec +23 -0
  44. data/exe/segue-handler-generator +1107 -0
  45. data/exe/segue-handler-generator-build +30 -0
  46. data/lib/cocoapods_plugin.rb +1 -0
  47. data/lib/pod/command/generate_segue_handlers.rb +31 -0
  48. data/lib/segue_handler_plugin.rb +4 -0
  49. data/lib/segue_handler_plugin/version.rb +3 -0
  50. data/segue_handler_plugin.gemspec +20 -0
  51. metadata +95 -0
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: b476f6580d97fa8688a2c6d49f96e18bdb69e2ea
4
+ data.tar.gz: 42643937f1f43a2d3d85ba9f544eeb4dd1d4ab96
5
+ SHA512:
6
+ metadata.gz: fa34dc60016f0fbd811cbcc85c0a2f1cfb8ff92aab5a48c8517c1176b7e50e987a4c47c957b416e8259f6b3bf8fb69b9682d057b93c7f72b20e2b9af8890c5c1
7
+ data.tar.gz: 10337cfd64dba0c73998f94d20c14141ab2ffd3ce2a7253d71a9e2c5b77483a88e6134d4adeea892381649ff6a14eda82f750e7737c069601c07a29738714411
data/.gitignore ADDED
@@ -0,0 +1,30 @@
1
+ # Xcode
2
+ # Pulled from: https://github.com/github/gitignore/blob/master/Swift.gitignore
3
+
4
+ ## Build generated
5
+
6
+ ## Various settings
7
+ *.pbxuser
8
+ !default.pbxuser
9
+ *.mode1v3
10
+ !default.mode1v3
11
+ *.mode2v3
12
+ !default.mode2v3
13
+ *.perspectivev3
14
+ !default.perspectivev3
15
+ xcuserdata
16
+
17
+ ## Other
18
+ *.xccheckout
19
+ *.moved-aside
20
+ *.xcuserstate
21
+ *.xcscmblueprint
22
+
23
+ ## Obj-C/Swift specific
24
+ *.hmap
25
+ *.ipa
26
+
27
+ **.DS_Store
28
+ artifacts
29
+ archives
30
+ logs
@@ -0,0 +1 @@
1
+ system
data/Example/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source 'https://rubygems.org'
2
+
3
+ gem 'cocoapods', '~> 0.39.0'
4
+ gem 'cocoapods-no-dev-schemes'
5
+ gem "segue_handler_plugin", :path => ".."
@@ -0,0 +1,71 @@
1
+ PATH
2
+ remote: ..
3
+ specs:
4
+ segue_handler_plugin (0.0.1)
5
+
6
+ GEM
7
+ remote: https://rubygems.org/
8
+ specs:
9
+ activesupport (4.2.5)
10
+ i18n (~> 0.7)
11
+ json (~> 1.7, >= 1.7.7)
12
+ minitest (~> 5.1)
13
+ thread_safe (~> 0.3, >= 0.3.4)
14
+ tzinfo (~> 1.1)
15
+ claide (0.9.1)
16
+ cocoapods (0.39.0)
17
+ activesupport (>= 4.0.2)
18
+ claide (~> 0.9.1)
19
+ cocoapods-core (= 0.39.0)
20
+ cocoapods-downloader (~> 0.9.3)
21
+ cocoapods-plugins (~> 0.4.2)
22
+ cocoapods-search (~> 0.1.0)
23
+ cocoapods-stats (~> 0.6.2)
24
+ cocoapods-trunk (~> 0.6.4)
25
+ cocoapods-try (~> 0.5.1)
26
+ colored (~> 1.2)
27
+ escape (~> 0.0.4)
28
+ molinillo (~> 0.4.0)
29
+ nap (~> 1.0)
30
+ xcodeproj (~> 0.28.2)
31
+ cocoapods-core (0.39.0)
32
+ activesupport (>= 4.0.2)
33
+ fuzzy_match (~> 2.0.4)
34
+ nap (~> 1.0)
35
+ cocoapods-downloader (0.9.3)
36
+ cocoapods-no-dev-schemes (1.0.0)
37
+ cocoapods-plugins (0.4.2)
38
+ nap
39
+ cocoapods-search (0.1.0)
40
+ cocoapods-stats (0.6.2)
41
+ cocoapods-trunk (0.6.4)
42
+ nap (>= 0.8, < 2.0)
43
+ netrc (= 0.7.8)
44
+ cocoapods-try (0.5.1)
45
+ colored (1.2)
46
+ escape (0.0.4)
47
+ fuzzy_match (2.0.4)
48
+ i18n (0.7.0)
49
+ json (1.8.3)
50
+ minitest (5.8.3)
51
+ molinillo (0.4.0)
52
+ nap (1.0.0)
53
+ netrc (0.7.8)
54
+ thread_safe (0.3.5)
55
+ tzinfo (1.2.2)
56
+ thread_safe (~> 0.1)
57
+ xcodeproj (0.28.2)
58
+ activesupport (>= 3)
59
+ claide (~> 0.9.1)
60
+ colored (~> 1.2)
61
+
62
+ PLATFORMS
63
+ ruby
64
+
65
+ DEPENDENCIES
66
+ cocoapods (~> 0.39.0)
67
+ cocoapods-no-dev-schemes
68
+ segue_handler_plugin!
69
+
70
+ BUNDLED WITH
71
+ 1.10.6
data/Example/Podfile ADDED
@@ -0,0 +1,6 @@
1
+ use_frameworks!
2
+ platform :ios, '8.3'
3
+ inhibit_all_warnings!
4
+ plugin 'segue_handler_plugin'
5
+
6
+ pod 'WillowTreeSegueHandler', path: '..'
@@ -0,0 +1,14 @@
1
+ PODS:
2
+ - WillowTreeSegueHandler (0.0.1)
3
+
4
+ DEPENDENCIES:
5
+ - WillowTreeSegueHandler (from `..`)
6
+
7
+ EXTERNAL SOURCES:
8
+ WillowTreeSegueHandler:
9
+ :path: ".."
10
+
11
+ SPEC CHECKSUMS:
12
+ WillowTreeSegueHandler: 3aaf49e1f7696981af8c0bcd585a57f36f4c9ca4
13
+
14
+ COCOAPODS: 0.39.0
@@ -0,0 +1,19 @@
1
+ //
2
+ // SegueHandler.h
3
+ // SegueHandler
4
+ //
5
+ // Created by Ian Terrell on 2/19/16.
6
+ // Copyright © 2016 WillowTree. All rights reserved.
7
+ //
8
+
9
+ #import <UIKit/UIKit.h>
10
+
11
+ //! Project version number for SegueHandler.
12
+ FOUNDATION_EXPORT double SegueHandlerVersionNumber;
13
+
14
+ //! Project version string for SegueHandler.
15
+ FOUNDATION_EXPORT const unsigned char SegueHandlerVersionString[];
16
+
17
+ // In this header, you should import all the public headers of your framework using statements like #import <SegueHandler/PublicHeader.h>
18
+
19
+
@@ -0,0 +1,25 @@
1
+ {
2
+ "name": "WillowTreeSegueHandler",
3
+ "version": "0.0.1",
4
+ "summary": "Better segue handling in Swift",
5
+ "description": "",
6
+ "homepage": "https://github.com/willowtreeapps/segue_handler",
7
+ "license": "MIT",
8
+ "authors": {
9
+ "Ian Terrell": "ian.terrell@gmail.com"
10
+ },
11
+ "source": {
12
+ "git": "https://github.com/willowtreeapps/segue_handler.git",
13
+ "tag": "0.0.1"
14
+ },
15
+ "platforms": {
16
+ "ios": "8.3",
17
+ "tvos": "9.1"
18
+ },
19
+ "source_files": [
20
+ "SegueHandler/**/*.swift",
21
+ "SegueHandler/**/*.h",
22
+ "SegueHandler/**/*.m"
23
+ ],
24
+ "public_header_files": "SegueHandler/**/*.h"
25
+ }
@@ -0,0 +1,14 @@
1
+ PODS:
2
+ - WillowTreeSegueHandler (0.0.1)
3
+
4
+ DEPENDENCIES:
5
+ - WillowTreeSegueHandler (from `..`)
6
+
7
+ EXTERNAL SOURCES:
8
+ WillowTreeSegueHandler:
9
+ :path: ".."
10
+
11
+ SPEC CHECKSUMS:
12
+ WillowTreeSegueHandler: 3aaf49e1f7696981af8c0bcd585a57f36f4c9ca4
13
+
14
+ COCOAPODS: 0.39.0
@@ -0,0 +1,523 @@
1
+ // !$*UTF8*$!
2
+ {
3
+ archiveVersion = 1;
4
+ classes = {
5
+ };
6
+ objectVersion = 46;
7
+ objects = {
8
+
9
+ /* Begin PBXBuildFile section */
10
+ 0A16E261C50A77E745376336C25C0B6A /* Pods-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 894E5DA93A9F359521A89826BE6DA777 /* Pods-dummy.m */; };
11
+ 1891B0E541F6218C817EB069627A721F /* Pods-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = 2BCC458FDD5F692BBB2BFC64BB5701FC /* Pods-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
12
+ 1AA7E5EDD7913859EADCCE161BDD6680 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; };
13
+ 1DB12BF2E526BF68442296896754FA84 /* SegueHandler.h in Headers */ = {isa = PBXBuildFile; fileRef = 8F81CD9EA9410594FFBF3DDEFEDA20C4 /* SegueHandler.h */; settings = {ATTRIBUTES = (Public, ); }; };
14
+ 2461C97CB811F54EC1AA23627010A409 /* WillowTreeSegueHandler-dummy.m in Sources */ = {isa = PBXBuildFile; fileRef = 427EEBFC50619C9274773196B8F6D878 /* WillowTreeSegueHandler-dummy.m */; };
15
+ 801C1A71312C59F2AA2B780F89D33D8E /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */; };
16
+ 8A35C6924CC1C9CA1C39BB4F1B32E714 /* SegueHandler.swift in Sources */ = {isa = PBXBuildFile; fileRef = 91462401F7F2290EE0B8D8B6FA3DB40A /* SegueHandler.swift */; settings = {COMPILER_FLAGS = "-w -Xanalyzer -analyzer-disable-all-checks"; }; };
17
+ 99375FC0067F4165EDDA36C42D04A048 /* WillowTreeSegueHandler-umbrella.h in Headers */ = {isa = PBXBuildFile; fileRef = E731F2AAA87451CC59E263F7364BC9B7 /* WillowTreeSegueHandler-umbrella.h */; settings = {ATTRIBUTES = (Public, ); }; };
18
+ /* End PBXBuildFile section */
19
+
20
+ /* Begin PBXContainerItemProxy section */
21
+ D70C9386F320209066B50B0A43F9569A /* PBXContainerItemProxy */ = {
22
+ isa = PBXContainerItemProxy;
23
+ containerPortal = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
24
+ proxyType = 1;
25
+ remoteGlobalIDString = 740B6FA8F5FA2FF2BA96946E652298B5;
26
+ remoteInfo = WillowTreeSegueHandler;
27
+ };
28
+ /* End PBXContainerItemProxy section */
29
+
30
+ /* Begin PBXFileReference section */
31
+ 0E05F01279C539549E789BA75FBBD236 /* WillowTreeSegueHandler.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = WillowTreeSegueHandler.modulemap; sourceTree = "<group>"; };
32
+ 291DA64A94DF69CF17A4AE0398A1C62B /* Pods.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods.framework; sourceTree = BUILT_PRODUCTS_DIR; };
33
+ 2BCC458FDD5F692BBB2BFC64BB5701FC /* Pods-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "Pods-umbrella.h"; sourceTree = "<group>"; };
34
+ 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS9.0.sdk/System/Library/Frameworks/Foundation.framework; sourceTree = DEVELOPER_DIR; };
35
+ 427EEBFC50619C9274773196B8F6D878 /* WillowTreeSegueHandler-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "WillowTreeSegueHandler-dummy.m"; sourceTree = "<group>"; };
36
+ 79A9DEDC89FE8336BF5FEDAAF75BF7FC /* Pods.modulemap */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = "sourcecode.module-map"; path = Pods.modulemap; sourceTree = "<group>"; };
37
+ 7C0DF32C89CA5042A59CD81883992313 /* WillowTreeSegueHandler.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = WillowTreeSegueHandler.xcconfig; sourceTree = "<group>"; };
38
+ 8495DD77F0992B0DEA6F5F408C95A731 /* WillowTreeSegueHandler.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = WillowTreeSegueHandler.framework; sourceTree = BUILT_PRODUCTS_DIR; };
39
+ 87B213035BAC5F75386F62D3C75D2342 /* Pods-acknowledgements.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = "Pods-acknowledgements.plist"; sourceTree = "<group>"; };
40
+ 894E5DA93A9F359521A89826BE6DA777 /* Pods-dummy.m */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.objc; path = "Pods-dummy.m"; sourceTree = "<group>"; };
41
+ 8F81CD9EA9410594FFBF3DDEFEDA20C4 /* SegueHandler.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = SegueHandler.h; sourceTree = "<group>"; };
42
+ 91462401F7F2290EE0B8D8B6FA3DB40A /* SegueHandler.swift */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.swift; path = SegueHandler.swift; sourceTree = "<group>"; };
43
+ 977577C045EDA9D9D1F46E2598D19FC7 /* Pods.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.debug.xcconfig; sourceTree = "<group>"; };
44
+ BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; name = Podfile; path = ../Podfile; sourceTree = SOURCE_ROOT; xcLanguageSpecificationIdentifier = xcode.lang.ruby; };
45
+ CBC0F7C552B739C909B650A0F42F7F38 /* Pods-resources.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-resources.sh"; sourceTree = "<group>"; };
46
+ D0405803033A2A777B8E4DFA0C1800ED /* Pods-acknowledgements.markdown */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text; path = "Pods-acknowledgements.markdown"; sourceTree = "<group>"; };
47
+ DA312349A49333542E6F4B36B329960E /* Pods.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; path = Pods.release.xcconfig; sourceTree = "<group>"; };
48
+ E63C21791FD73C1997ACB6DBB7116C7E /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
49
+ E731F2AAA87451CC59E263F7364BC9B7 /* WillowTreeSegueHandler-umbrella.h */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "WillowTreeSegueHandler-umbrella.h"; sourceTree = "<group>"; };
50
+ E7F21354943D9F42A70697D5A5EF72E9 /* Pods-frameworks.sh */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.script.sh; path = "Pods-frameworks.sh"; sourceTree = "<group>"; };
51
+ E8446514FBAD26C0E18F24A5715AEF67 /* Info.plist */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
52
+ EB4F058E6F02314DC28B872410F2D1A7 /* WillowTreeSegueHandler-prefix.pch */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = sourcecode.c.h; path = "WillowTreeSegueHandler-prefix.pch"; sourceTree = "<group>"; };
53
+ /* End PBXFileReference section */
54
+
55
+ /* Begin PBXFrameworksBuildPhase section */
56
+ 68609326BEDF58D85212D024A5566472 /* Frameworks */ = {
57
+ isa = PBXFrameworksBuildPhase;
58
+ buildActionMask = 2147483647;
59
+ files = (
60
+ 801C1A71312C59F2AA2B780F89D33D8E /* Foundation.framework in Frameworks */,
61
+ );
62
+ runOnlyForDeploymentPostprocessing = 0;
63
+ };
64
+ EFC77D48BEE01919E7A6D07311636E4B /* Frameworks */ = {
65
+ isa = PBXFrameworksBuildPhase;
66
+ buildActionMask = 2147483647;
67
+ files = (
68
+ 1AA7E5EDD7913859EADCCE161BDD6680 /* Foundation.framework in Frameworks */,
69
+ );
70
+ runOnlyForDeploymentPostprocessing = 0;
71
+ };
72
+ /* End PBXFrameworksBuildPhase section */
73
+
74
+ /* Begin PBXGroup section */
75
+ 23B736DCDF8C4301F98B3BBB090111AD /* Support Files */ = {
76
+ isa = PBXGroup;
77
+ children = (
78
+ E63C21791FD73C1997ACB6DBB7116C7E /* Info.plist */,
79
+ 0E05F01279C539549E789BA75FBBD236 /* WillowTreeSegueHandler.modulemap */,
80
+ 7C0DF32C89CA5042A59CD81883992313 /* WillowTreeSegueHandler.xcconfig */,
81
+ 427EEBFC50619C9274773196B8F6D878 /* WillowTreeSegueHandler-dummy.m */,
82
+ EB4F058E6F02314DC28B872410F2D1A7 /* WillowTreeSegueHandler-prefix.pch */,
83
+ E731F2AAA87451CC59E263F7364BC9B7 /* WillowTreeSegueHandler-umbrella.h */,
84
+ );
85
+ name = "Support Files";
86
+ path = "Example/Pods/Target Support Files/WillowTreeSegueHandler";
87
+ sourceTree = "<group>";
88
+ };
89
+ 27475B7F93A69CBDEA0BB64A239590A6 /* Products */ = {
90
+ isa = PBXGroup;
91
+ children = (
92
+ 291DA64A94DF69CF17A4AE0398A1C62B /* Pods.framework */,
93
+ 8495DD77F0992B0DEA6F5F408C95A731 /* WillowTreeSegueHandler.framework */,
94
+ );
95
+ name = Products;
96
+ sourceTree = "<group>";
97
+ };
98
+ 5665E3585420AE24FF6726B2D2325FF5 /* SegueHandler */ = {
99
+ isa = PBXGroup;
100
+ children = (
101
+ 8F40F739671872FC682BA4D608C7A868 /* SegueHandler */,
102
+ );
103
+ path = SegueHandler;
104
+ sourceTree = "<group>";
105
+ };
106
+ 75D98FF52E597A11900E131B6C4E1ADA /* Pods */ = {
107
+ isa = PBXGroup;
108
+ children = (
109
+ E8446514FBAD26C0E18F24A5715AEF67 /* Info.plist */,
110
+ 79A9DEDC89FE8336BF5FEDAAF75BF7FC /* Pods.modulemap */,
111
+ D0405803033A2A777B8E4DFA0C1800ED /* Pods-acknowledgements.markdown */,
112
+ 87B213035BAC5F75386F62D3C75D2342 /* Pods-acknowledgements.plist */,
113
+ 894E5DA93A9F359521A89826BE6DA777 /* Pods-dummy.m */,
114
+ E7F21354943D9F42A70697D5A5EF72E9 /* Pods-frameworks.sh */,
115
+ CBC0F7C552B739C909B650A0F42F7F38 /* Pods-resources.sh */,
116
+ 2BCC458FDD5F692BBB2BFC64BB5701FC /* Pods-umbrella.h */,
117
+ 977577C045EDA9D9D1F46E2598D19FC7 /* Pods.debug.xcconfig */,
118
+ DA312349A49333542E6F4B36B329960E /* Pods.release.xcconfig */,
119
+ );
120
+ name = Pods;
121
+ path = "Target Support Files/Pods";
122
+ sourceTree = "<group>";
123
+ };
124
+ 7DB346D0F39D3F0E887471402A8071AB = {
125
+ isa = PBXGroup;
126
+ children = (
127
+ BA6428E9F66FD5A23C0A2E06ED26CD2F /* Podfile */,
128
+ 9206AC80A03C0D7E8394618DD291D8C3 /* Development Pods */,
129
+ BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */,
130
+ 27475B7F93A69CBDEA0BB64A239590A6 /* Products */,
131
+ B7B80995527643776607AFFA75B91E24 /* Targets Support Files */,
132
+ );
133
+ sourceTree = "<group>";
134
+ };
135
+ 8F40F739671872FC682BA4D608C7A868 /* SegueHandler */ = {
136
+ isa = PBXGroup;
137
+ children = (
138
+ 8F81CD9EA9410594FFBF3DDEFEDA20C4 /* SegueHandler.h */,
139
+ 91462401F7F2290EE0B8D8B6FA3DB40A /* SegueHandler.swift */,
140
+ );
141
+ path = SegueHandler;
142
+ sourceTree = "<group>";
143
+ };
144
+ 9206AC80A03C0D7E8394618DD291D8C3 /* Development Pods */ = {
145
+ isa = PBXGroup;
146
+ children = (
147
+ C2567C908DE64045737DB75E5AACDC38 /* WillowTreeSegueHandler */,
148
+ );
149
+ name = "Development Pods";
150
+ sourceTree = "<group>";
151
+ };
152
+ B7B80995527643776607AFFA75B91E24 /* Targets Support Files */ = {
153
+ isa = PBXGroup;
154
+ children = (
155
+ 75D98FF52E597A11900E131B6C4E1ADA /* Pods */,
156
+ );
157
+ name = "Targets Support Files";
158
+ sourceTree = "<group>";
159
+ };
160
+ BC3CA7F9E30CC8F7E2DD044DD34432FC /* Frameworks */ = {
161
+ isa = PBXGroup;
162
+ children = (
163
+ BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */,
164
+ );
165
+ name = Frameworks;
166
+ sourceTree = "<group>";
167
+ };
168
+ BF6342C8B29F4CEEA088EFF7AB4DE362 /* iOS */ = {
169
+ isa = PBXGroup;
170
+ children = (
171
+ 3E4E89230EF59BC255123B67864ACF77 /* Foundation.framework */,
172
+ );
173
+ name = iOS;
174
+ sourceTree = "<group>";
175
+ };
176
+ C2567C908DE64045737DB75E5AACDC38 /* WillowTreeSegueHandler */ = {
177
+ isa = PBXGroup;
178
+ children = (
179
+ 5665E3585420AE24FF6726B2D2325FF5 /* SegueHandler */,
180
+ 23B736DCDF8C4301F98B3BBB090111AD /* Support Files */,
181
+ );
182
+ name = WillowTreeSegueHandler;
183
+ path = ../..;
184
+ sourceTree = "<group>";
185
+ };
186
+ /* End PBXGroup section */
187
+
188
+ /* Begin PBXHeadersBuildPhase section */
189
+ 7ECCEA911F87605953A6A2125CA92985 /* Headers */ = {
190
+ isa = PBXHeadersBuildPhase;
191
+ buildActionMask = 2147483647;
192
+ files = (
193
+ 1DB12BF2E526BF68442296896754FA84 /* SegueHandler.h in Headers */,
194
+ 99375FC0067F4165EDDA36C42D04A048 /* WillowTreeSegueHandler-umbrella.h in Headers */,
195
+ );
196
+ runOnlyForDeploymentPostprocessing = 0;
197
+ };
198
+ D61ADC6362735C08C628EF8974A95D25 /* Headers */ = {
199
+ isa = PBXHeadersBuildPhase;
200
+ buildActionMask = 2147483647;
201
+ files = (
202
+ 1891B0E541F6218C817EB069627A721F /* Pods-umbrella.h in Headers */,
203
+ );
204
+ runOnlyForDeploymentPostprocessing = 0;
205
+ };
206
+ /* End PBXHeadersBuildPhase section */
207
+
208
+ /* Begin PBXNativeTarget section */
209
+ 740B6FA8F5FA2FF2BA96946E652298B5 /* WillowTreeSegueHandler */ = {
210
+ isa = PBXNativeTarget;
211
+ buildConfigurationList = 82A037957506C85472C9B522B1AD79C0 /* Build configuration list for PBXNativeTarget "WillowTreeSegueHandler" */;
212
+ buildPhases = (
213
+ 72201A7F8253E553237767988B8A9ABC /* Sources */,
214
+ 68609326BEDF58D85212D024A5566472 /* Frameworks */,
215
+ 7ECCEA911F87605953A6A2125CA92985 /* Headers */,
216
+ );
217
+ buildRules = (
218
+ );
219
+ dependencies = (
220
+ );
221
+ name = WillowTreeSegueHandler;
222
+ productName = WillowTreeSegueHandler;
223
+ productReference = 8495DD77F0992B0DEA6F5F408C95A731 /* WillowTreeSegueHandler.framework */;
224
+ productType = "com.apple.product-type.framework";
225
+ };
226
+ EFB3130C270AB9013343702909CCE3C6 /* Pods */ = {
227
+ isa = PBXNativeTarget;
228
+ buildConfigurationList = 36767AEFCF2BDA404C42BD43A159FEB9 /* Build configuration list for PBXNativeTarget "Pods" */;
229
+ buildPhases = (
230
+ FD8BFBB92AB86DE1950013CD4D5F1C0E /* Sources */,
231
+ EFC77D48BEE01919E7A6D07311636E4B /* Frameworks */,
232
+ D61ADC6362735C08C628EF8974A95D25 /* Headers */,
233
+ );
234
+ buildRules = (
235
+ );
236
+ dependencies = (
237
+ 773541AE008873E473B48A08CEEFA369 /* PBXTargetDependency */,
238
+ );
239
+ name = Pods;
240
+ productName = Pods;
241
+ productReference = 291DA64A94DF69CF17A4AE0398A1C62B /* Pods.framework */;
242
+ productType = "com.apple.product-type.framework";
243
+ };
244
+ /* End PBXNativeTarget section */
245
+
246
+ /* Begin PBXProject section */
247
+ D41D8CD98F00B204E9800998ECF8427E /* Project object */ = {
248
+ isa = PBXProject;
249
+ attributes = {
250
+ LastSwiftUpdateCheck = 0700;
251
+ LastUpgradeCheck = 0700;
252
+ };
253
+ buildConfigurationList = 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */;
254
+ compatibilityVersion = "Xcode 3.2";
255
+ developmentRegion = English;
256
+ hasScannedForEncodings = 0;
257
+ knownRegions = (
258
+ en,
259
+ );
260
+ mainGroup = 7DB346D0F39D3F0E887471402A8071AB;
261
+ productRefGroup = 27475B7F93A69CBDEA0BB64A239590A6 /* Products */;
262
+ projectDirPath = "";
263
+ projectRoot = "";
264
+ targets = (
265
+ EFB3130C270AB9013343702909CCE3C6 /* Pods */,
266
+ 740B6FA8F5FA2FF2BA96946E652298B5 /* WillowTreeSegueHandler */,
267
+ );
268
+ };
269
+ /* End PBXProject section */
270
+
271
+ /* Begin PBXSourcesBuildPhase section */
272
+ 72201A7F8253E553237767988B8A9ABC /* Sources */ = {
273
+ isa = PBXSourcesBuildPhase;
274
+ buildActionMask = 2147483647;
275
+ files = (
276
+ 8A35C6924CC1C9CA1C39BB4F1B32E714 /* SegueHandler.swift in Sources */,
277
+ 2461C97CB811F54EC1AA23627010A409 /* WillowTreeSegueHandler-dummy.m in Sources */,
278
+ );
279
+ runOnlyForDeploymentPostprocessing = 0;
280
+ };
281
+ FD8BFBB92AB86DE1950013CD4D5F1C0E /* Sources */ = {
282
+ isa = PBXSourcesBuildPhase;
283
+ buildActionMask = 2147483647;
284
+ files = (
285
+ 0A16E261C50A77E745376336C25C0B6A /* Pods-dummy.m in Sources */,
286
+ );
287
+ runOnlyForDeploymentPostprocessing = 0;
288
+ };
289
+ /* End PBXSourcesBuildPhase section */
290
+
291
+ /* Begin PBXTargetDependency section */
292
+ 773541AE008873E473B48A08CEEFA369 /* PBXTargetDependency */ = {
293
+ isa = PBXTargetDependency;
294
+ name = WillowTreeSegueHandler;
295
+ target = 740B6FA8F5FA2FF2BA96946E652298B5 /* WillowTreeSegueHandler */;
296
+ targetProxy = D70C9386F320209066B50B0A43F9569A /* PBXContainerItemProxy */;
297
+ };
298
+ /* End PBXTargetDependency section */
299
+
300
+ /* Begin XCBuildConfiguration section */
301
+ 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */ = {
302
+ isa = XCBuildConfiguration;
303
+ buildSettings = {
304
+ ALWAYS_SEARCH_USER_PATHS = NO;
305
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
306
+ CLANG_CXX_LIBRARY = "libc++";
307
+ CLANG_ENABLE_MODULES = YES;
308
+ CLANG_ENABLE_OBJC_ARC = YES;
309
+ CLANG_WARN_BOOL_CONVERSION = YES;
310
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
311
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
312
+ CLANG_WARN_EMPTY_BODY = YES;
313
+ CLANG_WARN_ENUM_CONVERSION = YES;
314
+ CLANG_WARN_INT_CONVERSION = YES;
315
+ CLANG_WARN_OBJC_ROOT_CLASS = YES;
316
+ CLANG_WARN_UNREACHABLE_CODE = YES;
317
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
318
+ COPY_PHASE_STRIP = YES;
319
+ ENABLE_NS_ASSERTIONS = NO;
320
+ GCC_C_LANGUAGE_STANDARD = gnu99;
321
+ GCC_PREPROCESSOR_DEFINITIONS = "RELEASE=1";
322
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
323
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
324
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
325
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
326
+ GCC_WARN_UNUSED_FUNCTION = YES;
327
+ GCC_WARN_UNUSED_VARIABLE = YES;
328
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
329
+ STRIP_INSTALLED_PRODUCT = NO;
330
+ SYMROOT = "${SRCROOT}/../build";
331
+ VALIDATE_PRODUCT = YES;
332
+ };
333
+ name = Release;
334
+ };
335
+ 552D02D5BA751AC2E8790D2811D496CA /* Debug */ = {
336
+ isa = XCBuildConfiguration;
337
+ buildSettings = {
338
+ ALWAYS_SEARCH_USER_PATHS = NO;
339
+ CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x";
340
+ CLANG_CXX_LIBRARY = "libc++";
341
+ CLANG_ENABLE_MODULES = YES;
342
+ CLANG_ENABLE_OBJC_ARC = YES;
343
+ CLANG_WARN_BOOL_CONVERSION = YES;
344
+ CLANG_WARN_CONSTANT_CONVERSION = YES;
345
+ CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES;
346
+ CLANG_WARN_EMPTY_BODY = YES;
347
+ CLANG_WARN_ENUM_CONVERSION = YES;
348
+ CLANG_WARN_INT_CONVERSION = YES;
349
+ CLANG_WARN_OBJC_ROOT_CLASS = YES;
350
+ CLANG_WARN_UNREACHABLE_CODE = YES;
351
+ CLANG_WARN__DUPLICATE_METHOD_MATCH = YES;
352
+ COPY_PHASE_STRIP = NO;
353
+ GCC_C_LANGUAGE_STANDARD = gnu99;
354
+ GCC_DYNAMIC_NO_PIC = NO;
355
+ GCC_OPTIMIZATION_LEVEL = 0;
356
+ GCC_PREPROCESSOR_DEFINITIONS = (
357
+ "DEBUG=1",
358
+ "$(inherited)",
359
+ );
360
+ GCC_SYMBOLS_PRIVATE_EXTERN = NO;
361
+ GCC_WARN_64_TO_32_BIT_CONVERSION = YES;
362
+ GCC_WARN_ABOUT_RETURN_TYPE = YES;
363
+ GCC_WARN_UNDECLARED_SELECTOR = YES;
364
+ GCC_WARN_UNINITIALIZED_AUTOS = YES;
365
+ GCC_WARN_UNUSED_FUNCTION = YES;
366
+ GCC_WARN_UNUSED_VARIABLE = YES;
367
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
368
+ ONLY_ACTIVE_ARCH = YES;
369
+ STRIP_INSTALLED_PRODUCT = NO;
370
+ SYMROOT = "${SRCROOT}/../build";
371
+ };
372
+ name = Debug;
373
+ };
374
+ 596613A4C67193C9F1DF5304D15090B7 /* Debug */ = {
375
+ isa = XCBuildConfiguration;
376
+ baseConfigurationReference = 977577C045EDA9D9D1F46E2598D19FC7 /* Pods.debug.xcconfig */;
377
+ buildSettings = {
378
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
379
+ CURRENT_PROJECT_VERSION = 1;
380
+ DEFINES_MODULE = YES;
381
+ DYLIB_COMPATIBILITY_VERSION = 1;
382
+ DYLIB_CURRENT_VERSION = 1;
383
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
384
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
385
+ INFOPLIST_FILE = "Target Support Files/Pods/Info.plist";
386
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
387
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
388
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
389
+ MACH_O_TYPE = staticlib;
390
+ MODULEMAP_FILE = "Target Support Files/Pods/Pods.modulemap";
391
+ MTL_ENABLE_DEBUG_INFO = YES;
392
+ OTHER_LDFLAGS = "";
393
+ OTHER_LIBTOOLFLAGS = "";
394
+ PODS_ROOT = "$(SRCROOT)";
395
+ PRODUCT_NAME = Pods;
396
+ SDKROOT = iphoneos;
397
+ SKIP_INSTALL = YES;
398
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
399
+ TARGETED_DEVICE_FAMILY = "1,2";
400
+ VERSIONING_SYSTEM = "apple-generic";
401
+ VERSION_INFO_PREFIX = "";
402
+ };
403
+ name = Debug;
404
+ };
405
+ 66D5B2E15C13FA7A4A0113069F17BFE0 /* Release */ = {
406
+ isa = XCBuildConfiguration;
407
+ baseConfigurationReference = DA312349A49333542E6F4B36B329960E /* Pods.release.xcconfig */;
408
+ buildSettings = {
409
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
410
+ CURRENT_PROJECT_VERSION = 1;
411
+ DEFINES_MODULE = YES;
412
+ DYLIB_COMPATIBILITY_VERSION = 1;
413
+ DYLIB_CURRENT_VERSION = 1;
414
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
415
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
416
+ INFOPLIST_FILE = "Target Support Files/Pods/Info.plist";
417
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
418
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
419
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
420
+ MACH_O_TYPE = staticlib;
421
+ MODULEMAP_FILE = "Target Support Files/Pods/Pods.modulemap";
422
+ MTL_ENABLE_DEBUG_INFO = NO;
423
+ OTHER_LDFLAGS = "";
424
+ OTHER_LIBTOOLFLAGS = "";
425
+ PODS_ROOT = "$(SRCROOT)";
426
+ PRODUCT_NAME = Pods;
427
+ SDKROOT = iphoneos;
428
+ SKIP_INSTALL = YES;
429
+ TARGETED_DEVICE_FAMILY = "1,2";
430
+ VERSIONING_SYSTEM = "apple-generic";
431
+ VERSION_INFO_PREFIX = "";
432
+ };
433
+ name = Release;
434
+ };
435
+ BE5DFB61DE4E1580629F8BDE530DFD5F /* Debug */ = {
436
+ isa = XCBuildConfiguration;
437
+ baseConfigurationReference = 7C0DF32C89CA5042A59CD81883992313 /* WillowTreeSegueHandler.xcconfig */;
438
+ buildSettings = {
439
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
440
+ CURRENT_PROJECT_VERSION = 1;
441
+ DEFINES_MODULE = YES;
442
+ DYLIB_COMPATIBILITY_VERSION = 1;
443
+ DYLIB_CURRENT_VERSION = 1;
444
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
445
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
446
+ GCC_PREFIX_HEADER = "Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler-prefix.pch";
447
+ INFOPLIST_FILE = "Target Support Files/WillowTreeSegueHandler/Info.plist";
448
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
449
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
450
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
451
+ MODULEMAP_FILE = "Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler.modulemap";
452
+ MTL_ENABLE_DEBUG_INFO = YES;
453
+ PRODUCT_NAME = WillowTreeSegueHandler;
454
+ SDKROOT = iphoneos;
455
+ SKIP_INSTALL = YES;
456
+ SWIFT_OPTIMIZATION_LEVEL = "-Onone";
457
+ TARGETED_DEVICE_FAMILY = "1,2";
458
+ VERSIONING_SYSTEM = "apple-generic";
459
+ VERSION_INFO_PREFIX = "";
460
+ };
461
+ name = Debug;
462
+ };
463
+ D40970333C5F0B67504B9FC8C9F0460F /* Release */ = {
464
+ isa = XCBuildConfiguration;
465
+ baseConfigurationReference = 7C0DF32C89CA5042A59CD81883992313 /* WillowTreeSegueHandler.xcconfig */;
466
+ buildSettings = {
467
+ "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer";
468
+ CURRENT_PROJECT_VERSION = 1;
469
+ DEFINES_MODULE = YES;
470
+ DYLIB_COMPATIBILITY_VERSION = 1;
471
+ DYLIB_CURRENT_VERSION = 1;
472
+ DYLIB_INSTALL_NAME_BASE = "@rpath";
473
+ ENABLE_STRICT_OBJC_MSGSEND = YES;
474
+ GCC_PREFIX_HEADER = "Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler-prefix.pch";
475
+ INFOPLIST_FILE = "Target Support Files/WillowTreeSegueHandler/Info.plist";
476
+ INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
477
+ IPHONEOS_DEPLOYMENT_TARGET = 8.3;
478
+ LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
479
+ MODULEMAP_FILE = "Target Support Files/WillowTreeSegueHandler/WillowTreeSegueHandler.modulemap";
480
+ MTL_ENABLE_DEBUG_INFO = NO;
481
+ PRODUCT_NAME = WillowTreeSegueHandler;
482
+ SDKROOT = iphoneos;
483
+ SKIP_INSTALL = YES;
484
+ TARGETED_DEVICE_FAMILY = "1,2";
485
+ VERSIONING_SYSTEM = "apple-generic";
486
+ VERSION_INFO_PREFIX = "";
487
+ };
488
+ name = Release;
489
+ };
490
+ /* End XCBuildConfiguration section */
491
+
492
+ /* Begin XCConfigurationList section */
493
+ 2D8E8EC45A3A1A1D94AE762CB5028504 /* Build configuration list for PBXProject "Pods" */ = {
494
+ isa = XCConfigurationList;
495
+ buildConfigurations = (
496
+ 552D02D5BA751AC2E8790D2811D496CA /* Debug */,
497
+ 10DE1947DAC0ED28F6C0A9F9BD75D546 /* Release */,
498
+ );
499
+ defaultConfigurationIsVisible = 0;
500
+ defaultConfigurationName = Release;
501
+ };
502
+ 36767AEFCF2BDA404C42BD43A159FEB9 /* Build configuration list for PBXNativeTarget "Pods" */ = {
503
+ isa = XCConfigurationList;
504
+ buildConfigurations = (
505
+ 596613A4C67193C9F1DF5304D15090B7 /* Debug */,
506
+ 66D5B2E15C13FA7A4A0113069F17BFE0 /* Release */,
507
+ );
508
+ defaultConfigurationIsVisible = 0;
509
+ defaultConfigurationName = Release;
510
+ };
511
+ 82A037957506C85472C9B522B1AD79C0 /* Build configuration list for PBXNativeTarget "WillowTreeSegueHandler" */ = {
512
+ isa = XCConfigurationList;
513
+ buildConfigurations = (
514
+ BE5DFB61DE4E1580629F8BDE530DFD5F /* Debug */,
515
+ D40970333C5F0B67504B9FC8C9F0460F /* Release */,
516
+ );
517
+ defaultConfigurationIsVisible = 0;
518
+ defaultConfigurationName = Release;
519
+ };
520
+ /* End XCConfigurationList section */
521
+ };
522
+ rootObject = D41D8CD98F00B204E9800998ECF8427E /* Project object */;
523
+ }