Skip to content

Commit

Permalink
Merge pull request #3 from SpectralDragon/swift_pm
Browse files Browse the repository at this point in the history
Swift Package Manager support
  • Loading branch information
kazuhiro4949 authored Oct 6, 2019
2 parents dba5d67 + bd5e51c commit dbb3c42
Show file tree
Hide file tree
Showing 87 changed files with 1,905 additions and 610 deletions.
71 changes: 66 additions & 5 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,69 @@
# macOS
.DS_Store

# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore

## Build generated
build/
DerivedData/

## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata/

## Other
*.moved-aside
*.xcuserstate
*.xcworkspace/xcshareddata/
*.xccheckout
*.xcscmblueprint

## Obj-C/Swift specific
*.hmap
*.ipa
*.dSYM.zip
*.dSYM

## Playgrounds
timeline.xctimeline
playground.xcworkspace

# Swift Package Manager
#
# Add this line if you want to avoid checking in source code from Swift Package Manager dependencies.
# Packages/
# Package.pins
# Package.resolved
.build/
.swiftpm/

# CocoaPods
#
# We recommend against adding the Pods directory to your .gitignore. However
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts

Carthage/Build

# fastlane
#
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
# screenshots whenever they are needed.
# For more information about the recommended setup visit:
# https://docs.fastlane.tools/best-practices/source-control/#source-control

fastlane/report.xml
fastlane/Preview.html
fastlane/screenshots/**/*.png
fastlane/test_output
22 changes: 22 additions & 0 deletions Example/Podfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Uncomment the next line to define a global platform for your project
platform :ios, '10.0'

target 'iOS Sample' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!

# Pods for iOS Sample

pod 'UICollectionViewSplitLayout', :path => '../'

target 'iOS SampleTests' do
inherit! :search_paths
# Pods for testing
end

target 'iOS SampleUITests' do
inherit! :search_paths
# Pods for testing
end

end
16 changes: 16 additions & 0 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PODS:
- UICollectionViewSplitLayout (1.0.0)

DEPENDENCIES:
- UICollectionViewSplitLayout (from `../`)

EXTERNAL SOURCES:
UICollectionViewSplitLayout:
:path: "../"

SPEC CHECKSUMS:
UICollectionViewSplitLayout: 726127878c8867b83a4ad33697c67122c993cf86

PODFILE CHECKSUM: 2227151cd12bed532033b71be9fdc0a6c7db629f

COCOAPODS: 1.7.5

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 16 additions & 0 deletions Example/Pods/Manifest.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

987 changes: 987 additions & 0 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit dbb3c42

Please sign in to comment.