Skip to content

Commit 3bdf15a

Browse files
authored
Merge pull request #10 from jeantimex/update-pod-project-structure
Update pod project structure.
2 parents bb5e0d9 + eaa7496 commit 3bdf15a

17 files changed

Lines changed: 700 additions & 56 deletions

File tree

CollapsibleTableSectionViewController.podspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |s|
1616
#
1717

1818
s.name = "CollapsibleTableSectionViewController"
19-
s.version = "0.0.6"
19+
s.version = "0.0.7"
2020
s.summary = "Swift 3.0 library to support collapsible sections in a table view."
2121

2222
# This description is used to generate tags and improve search results.
@@ -92,10 +92,10 @@ Pod::Spec.new do |s|
9292
# Not including the public_header_files will make all headers public.
9393
#
9494

95-
s.source_files = "Classes/**/*.swift"
96-
s.exclude_files = "Classes/Exclude"
95+
s.source_files = "CollapsibleTableSectionViewController/*.{swift}"
96+
s.exclude_files = "CollapsibleTableSectionViewController/Exclude"
9797

98-
# s.public_header_files = "Classes/**/*.h"
98+
# s.public_header_files = "CollapsibleTableSectionViewController/**/*.h"
9999

100100

101101
# ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #

CollapsibleTableSectionViewController.xcodeproj/project.pbxproj

Lines changed: 437 additions & 0 deletions
Large diffs are not rendered by default.

CollapsibleTableSectionViewController.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.
Lines changed: 99 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "0830"
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 = "0A8BD66B1F231B2C003D6155"
18+
BuildableName = "CollapsibleTableSectionViewController.framework"
19+
BlueprintName = "CollapsibleTableSectionViewController"
20+
ReferencedContainer = "container:CollapsibleTableSectionViewController.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
<TestableReference
32+
skipped = "NO">
33+
<BuildableReference
34+
BuildableIdentifier = "primary"
35+
BlueprintIdentifier = "0A8BD6741F231B2C003D6155"
36+
BuildableName = "CollapsibleTableSectionViewControllerTests.xctest"
37+
BlueprintName = "CollapsibleTableSectionViewControllerTests"
38+
ReferencedContainer = "container:CollapsibleTableSectionViewController.xcodeproj">
39+
</BuildableReference>
40+
</TestableReference>
41+
</Testables>
42+
<MacroExpansion>
43+
<BuildableReference
44+
BuildableIdentifier = "primary"
45+
BlueprintIdentifier = "0A8BD66B1F231B2C003D6155"
46+
BuildableName = "CollapsibleTableSectionViewController.framework"
47+
BlueprintName = "CollapsibleTableSectionViewController"
48+
ReferencedContainer = "container:CollapsibleTableSectionViewController.xcodeproj">
49+
</BuildableReference>
50+
</MacroExpansion>
51+
<AdditionalOptions>
52+
</AdditionalOptions>
53+
</TestAction>
54+
<LaunchAction
55+
buildConfiguration = "Debug"
56+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
57+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
58+
launchStyle = "0"
59+
useCustomWorkingDirectory = "NO"
60+
ignoresPersistentStateOnLaunch = "NO"
61+
debugDocumentVersioning = "YES"
62+
debugServiceExtension = "internal"
63+
allowLocationSimulation = "YES">
64+
<MacroExpansion>
65+
<BuildableReference
66+
BuildableIdentifier = "primary"
67+
BlueprintIdentifier = "0A8BD66B1F231B2C003D6155"
68+
BuildableName = "CollapsibleTableSectionViewController.framework"
69+
BlueprintName = "CollapsibleTableSectionViewController"
70+
ReferencedContainer = "container:CollapsibleTableSectionViewController.xcodeproj">
71+
</BuildableReference>
72+
</MacroExpansion>
73+
<AdditionalOptions>
74+
</AdditionalOptions>
75+
</LaunchAction>
76+
<ProfileAction
77+
buildConfiguration = "Release"
78+
shouldUseLaunchSchemeArgsEnv = "YES"
79+
savedToolIdentifier = ""
80+
useCustomWorkingDirectory = "NO"
81+
debugDocumentVersioning = "YES">
82+
<MacroExpansion>
83+
<BuildableReference
84+
BuildableIdentifier = "primary"
85+
BlueprintIdentifier = "0A8BD66B1F231B2C003D6155"
86+
BuildableName = "CollapsibleTableSectionViewController.framework"
87+
BlueprintName = "CollapsibleTableSectionViewController"
88+
ReferencedContainer = "container:CollapsibleTableSectionViewController.xcodeproj">
89+
</BuildableReference>
90+
</MacroExpansion>
91+
</ProfileAction>
92+
<AnalyzeAction
93+
buildConfiguration = "Debug">
94+
</AnalyzeAction>
95+
<ArchiveAction
96+
buildConfiguration = "Release"
97+
revealArchiveInOrganizer = "YES">
98+
</ArchiveAction>
99+
</Scheme>
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
//
2+
// CollapsibleTableSectionViewController.h
3+
// CollapsibleTableSectionViewController
4+
//
5+
// Created by Yong Su on 7/21/17.
6+
// Copyright © 2017 jeantimex. All rights reserved.
7+
//
8+
9+
#import <UIKit/UIKit.h>
10+
11+
//! Project version number for CollapsibleTableSectionViewController.
12+
FOUNDATION_EXPORT double CollapsibleTableSectionViewControllerVersionNumber;
13+
14+
//! Project version string for CollapsibleTableSectionViewController.
15+
FOUNDATION_EXPORT const unsigned char CollapsibleTableSectionViewControllerVersionString[];
16+
17+
// In this header, you should import all the public headers of your framework using statements like #import <CollapsibleTableSectionViewController/PublicHeader.h>
18+
19+

Classes/CollapsibleTableSectionViewController.swift renamed to CollapsibleTableSectionViewController/CollapsibleTableSectionViewController.swift

File renamed without changes.

Classes/CollapsibleTableViewCell.swift renamed to CollapsibleTableSectionViewController/CollapsibleTableViewCell.swift

File renamed without changes.

Classes/CollapsibleTableViewHeader.swift renamed to CollapsibleTableSectionViewController/CollapsibleTableViewHeader.swift

File renamed without changes.

Classes/Extensions.swift renamed to CollapsibleTableSectionViewController/Extensions.swift

File renamed without changes.
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
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>CFBundleDevelopmentRegion</key>
6+
<string>en</string>
7+
<key>CFBundleExecutable</key>
8+
<string>$(EXECUTABLE_NAME)</string>
9+
<key>CFBundleIdentifier</key>
10+
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
11+
<key>CFBundleInfoDictionaryVersion</key>
12+
<string>6.0</string>
13+
<key>CFBundleName</key>
14+
<string>$(PRODUCT_NAME)</string>
15+
<key>CFBundlePackageType</key>
16+
<string>FMWK</string>
17+
<key>CFBundleShortVersionString</key>
18+
<string>1.0</string>
19+
<key>CFBundleVersion</key>
20+
<string>$(CURRENT_PROJECT_VERSION)</string>
21+
<key>NSPrincipalClass</key>
22+
<string></string>
23+
</dict>
24+
</plist>

0 commit comments

Comments
 (0)