-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Split the Example project in 2 projects:
* FlexLayoutSample: Use cocoapods as dependency manager * FlexLayoutSample-SPM: Use SPM (Swift Packager Manager) as dependency manager
- Loading branch information
Showing
15 changed files
with
856 additions
and
268 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
699 changes: 699 additions & 0 deletions
699
Example/SPM/FlexLayoutSample-SPM.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
7 changes: 7 additions & 0 deletions
7
Example/SPM/FlexLayoutSample-SPM.xcodeproj/project.xcworkspace/contents.xcworkspacedata
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
8 changes: 8 additions & 0 deletions
8
.../FlexLayoutSample-SPM.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
opt_in_rules: # some rules are only opt-in | ||
- closure_end_indentation | ||
- closure_spacing | ||
- explicit_init | ||
- number_separator | ||
- operator_usage_whitespace | ||
- overridden_super_call | ||
- private_outlet | ||
- prohibited_super_call | ||
- redundant_nil_coalescing | ||
|
||
disabled_rules: # rule identifiers to exclude from running | ||
- function_body_length | ||
- trailing_whitespace | ||
- force_cast | ||
- type_name | ||
- file_length | ||
- type_body_length | ||
- cyclomatic_complexity | ||
- identifier_name | ||
- line_length | ||
|
||
excluded: # paths to ignore during linting. overridden by `included`. | ||
- Pods | ||
- Carthage | ||
- fastlane |
240 changes: 8 additions & 232 deletions
240
...lexLayoutSample.xcodeproj/project.pbxproj → ...lexLayoutSample.xcodeproj/project.pbxproj
Large diffs are not rendered by default.
Oops, something went wrong.
File renamed without changes.
8 changes: 8 additions & 0 deletions
8
...pods/FlexLayoutSample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
source 'https://cdn.cocoapods.org/' | ||
use_frameworks! | ||
platform :ios, '12.0' | ||
|
||
workspace 'FlexLayoutSample.xcworkspace' | ||
|
||
target 'FlexLayoutSample' do | ||
project 'FlexLayoutSample.xcodeproj' | ||
|
||
pod 'FlexLayout', path: '../..' | ||
pod 'PinLayout' | ||
|
||
# Debug only | ||
pod 'SwiftLint' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
PODS: | ||
- FlexLayout (2.0.02) | ||
- PinLayout (1.10.4) | ||
- SwiftLint (0.53.0) | ||
|
||
DEPENDENCIES: | ||
- FlexLayout (from `../..`) | ||
- PinLayout | ||
- SwiftLint | ||
|
||
SPEC REPOS: | ||
trunk: | ||
- PinLayout | ||
- SwiftLint | ||
|
||
EXTERNAL SOURCES: | ||
FlexLayout: | ||
:path: "../.." | ||
|
||
SPEC CHECKSUMS: | ||
FlexLayout: bd1d1738d67a455205e14c42492fe5450e3c1554 | ||
PinLayout: f8a677ce0cd1cfe96b58435d029b4ceb4ce9c04c | ||
SwiftLint: 5ce4d6a8ff83f1b5fd5ad5dbf30965d35af65e44 | ||
|
||
PODFILE CHECKSUM: acd6f8f55e169593da8f5d86c0f788512ba67886 | ||
|
||
COCOAPODS: 1.14.2 |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters