Skip to content

Commit 44cafce

Browse files
authored
Merge pull request #196 from codelathe/support_swiftui_customviews
Support SwiftUI custom views
2 parents 7e65434 + 66c9559 commit 44cafce

File tree

165 files changed

+6217
-3144
lines changed

Some content is hidden

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

165 files changed

+6217
-3144
lines changed

AMPopTip.podspec

+2-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ Pod::Spec.new do |s|
1515
s.source = { :git => "https://github.com/andreamazz/AMPopTip.git", :tag => s.version }
1616
s.platform = :ios, '8.0'
1717
s.swift_version = '5.0'
18-
s.source_files = 'Source', '*.{swift}'
18+
s.source_files = 'Source/*.swift'
1919
s.requires_arc = true
20+
s.weak_framework = 'SwiftUI'
2021
s.social_media_url = 'https://twitter.com/theandreamazz'
2122
end

Demo/Podfile

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ target 'PopTip Demo' do
1111

1212
target 'PopTip DemoTests' do
1313
inherit! :search_paths
14-
pod 'Quick', '1.1.0'
15-
pod 'Nimble', '6.1.0'
16-
pod 'Nimble-Snapshots', '4.4.0'
14+
pod 'Quick'
15+
pod 'Nimble'
16+
pod 'Nimble-Snapshots'
1717
end
1818

1919
end

Demo/Podfile.lock

+25-26
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,27 @@
11
PODS:
2-
- AMPopTip (3.6.0)
3-
- FBSnapshotTestCase (2.1.4):
4-
- FBSnapshotTestCase/SwiftSupport (= 2.1.4)
5-
- FBSnapshotTestCase/Core (2.1.4)
6-
- FBSnapshotTestCase/SwiftSupport (2.1.4):
7-
- FBSnapshotTestCase/Core
8-
- Nimble (6.1.0)
9-
- Nimble-Snapshots (4.4.0):
10-
- Nimble-Snapshots/Core (= 4.4.0)
11-
- Nimble-Snapshots/Core (4.4.0):
12-
- FBSnapshotTestCase (~> 2.0)
13-
- Nimble
14-
- Quick
15-
- Quick (1.1.0)
2+
- AMPopTip (4.2.0)
3+
- iOSSnapshotTestCase (2.2.0):
4+
- iOSSnapshotTestCase/SwiftSupport (= 2.2.0)
5+
- iOSSnapshotTestCase/Core (2.2.0)
6+
- iOSSnapshotTestCase/SwiftSupport (2.2.0):
7+
- iOSSnapshotTestCase/Core
8+
- Nimble (7.3.4)
9+
- Nimble-Snapshots (6.4.1):
10+
- Nimble-Snapshots/Core (= 6.4.1)
11+
- Nimble-Snapshots/Core (6.4.1):
12+
- iOSSnapshotTestCase (~> 2.0)
13+
- Nimble (~> 7.0)
14+
- Quick (2.2.0)
1615

1716
DEPENDENCIES:
1817
- AMPopTip (from `../`)
19-
- Nimble (= 6.1.0)
20-
- Nimble-Snapshots (= 4.4.0)
21-
- Quick (= 1.1.0)
18+
- Nimble
19+
- Nimble-Snapshots
20+
- Quick
2221

2322
SPEC REPOS:
24-
https://github.com/cocoapods/specs.git:
25-
- FBSnapshotTestCase
23+
trunk:
24+
- iOSSnapshotTestCase
2625
- Nimble
2726
- Nimble-Snapshots
2827
- Quick
@@ -32,12 +31,12 @@ EXTERNAL SOURCES:
3231
:path: "../"
3332

3433
SPEC CHECKSUMS:
35-
AMPopTip: ebba6ae1859d3b22a68562e1baf8ea0e159b545e
36-
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a
37-
Nimble: c53e6903fee94041b90ded74f135820437d8bf59
38-
Nimble-Snapshots: e743439f26c2fa99d8f7e0d7c01c99bcb40aa6f2
39-
Quick: dafc587e21eed9f4cab3249b9f9015b0b7a7f71d
34+
AMPopTip: 43444807604e7d38713fc15b93fa65fbe369227c
35+
iOSSnapshotTestCase: 415bd84f9dbba4ff45fede49d800bc7332fbedac
36+
Nimble: 051e3d8912d40138fa5591c78594f95fb172af37
37+
Nimble-Snapshots: 438fb1a6fa3c655e246fc9ac375f6cd2964d759a
38+
Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e
4039

41-
PODFILE CHECKSUM: 68d6239712fba8e0da2721828fdb2901c0ef7977
40+
PODFILE CHECKSUM: 427d9003aa8e98a2af5857ca6737809dc88b2119
4241

43-
COCOAPODS: 1.5.3
42+
COCOAPODS: 1.8.4

Demo/Pods/Local Podspecs/AMPopTip.podspec.json

+7-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Demo/Pods/Manifest.lock

+25-26
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Demo/Pods/Nimble-Snapshots/CurrentTestCaseTracker.swift

+38
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)