Skip to content

Commit 34a9980

Browse files
authored
Merge pull request #2 from lovoo/feature/swiftpm
Add support for Swift Package Manager
2 parents d924d56 + cf61c9f commit 34a9980

File tree

51 files changed

+1193
-869
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1193
-869
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# macOS
2+
.DS_Store
3+
14
# Xcode
25
#
36
build/
@@ -16,6 +19,7 @@ DerivedData
1619
*.hmap
1720
*.ipa
1821
*.xcuserstate
22+
.swiftpm
1923

2024
# CocoaPods
2125
#

Example/LVModalQueue.xcodeproj/project.pbxproj

Lines changed: 60 additions & 71 deletions
Large diffs are not rendered by default.
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>IDEDidComputeMac32BitWarning</key>
6+
<true/>
7+
</dict>
8+
</plist>

Example/Podfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,11 @@
1-
source 'https://github.com/CocoaPods/Specs.git'
1+
source 'https://cdn.cocoapods.org/'
2+
23
use_frameworks!
34

4-
target 'LVModalQueue_Example', :exclusive => true do
5+
target 'LVModalQueue_Example' do
56
pod "LVModalQueue", :path => "../"
67
end
78

8-
target 'LVModalQueue_Tests', :exclusive => true do
9+
target 'LVModalQueue_Tests' do
910
pod "LVModalQueue", :path => "../"
10-
11-
1211
end

Example/Podfile.lock

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,16 @@
11
PODS:
2-
- LVModalQueue (0.1.0)
2+
- LVModalQueue (0.3.0)
33

44
DEPENDENCIES:
55
- LVModalQueue (from `../`)
66

77
EXTERNAL SOURCES:
88
LVModalQueue:
9-
:path: ../
9+
:path: "../"
1010

1111
SPEC CHECKSUMS:
12-
LVModalQueue: 7027f26bf75322329777cfe6f203bc759f2fdfde
12+
LVModalQueue: 79984475a7adaccb33e8e3ef9ad06742852ff81b
1313

14-
COCOAPODS: 0.39.0.rc.1
14+
PODFILE CHECKSUM: 41d57f05063b6c447c63bd9c09d40153d92c919e
15+
16+
COCOAPODS: 1.15.2

Example/Pods/Local Podspecs/LVModalQueue.podspec.json

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Manifest.lock

Lines changed: 6 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 497 additions & 342 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Pods/Pods.xcodeproj/project.xcworkspace/contents.xcworkspacedata

Lines changed: 0 additions & 4 deletions
This file was deleted.

Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/LVModalQueue.xcscheme

Lines changed: 0 additions & 71 deletions
This file was deleted.

0 commit comments

Comments
 (0)