Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support SwiftUI custom views #196

Merged
merged 6 commits into from
Nov 14, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion AMPopTip.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/andreamazz/AMPopTip.git", :tag => s.version }
s.platform = :ios, '8.0'
s.swift_version = '5.0'
s.source_files = 'Source', '*.{swift}'
s.source_files = 'Source/*.swift'
s.requires_arc = true
s.weak_framework = 'SwiftUI'
s.social_media_url = 'https://twitter.com/theandreamazz'
end
6 changes: 3 additions & 3 deletions Demo/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ target 'PopTip Demo' do

target 'PopTip DemoTests' do
inherit! :search_paths
pod 'Quick', '1.1.0'
pod 'Nimble', '6.1.0'
pod 'Nimble-Snapshots', '4.4.0'
pod 'Quick'
pod 'Nimble'
pod 'Nimble-Snapshots'
end

end
51 changes: 25 additions & 26 deletions Demo/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,28 +1,27 @@
PODS:
- AMPopTip (3.6.0)
- FBSnapshotTestCase (2.1.4):
- FBSnapshotTestCase/SwiftSupport (= 2.1.4)
- FBSnapshotTestCase/Core (2.1.4)
- FBSnapshotTestCase/SwiftSupport (2.1.4):
- FBSnapshotTestCase/Core
- Nimble (6.1.0)
- Nimble-Snapshots (4.4.0):
- Nimble-Snapshots/Core (= 4.4.0)
- Nimble-Snapshots/Core (4.4.0):
- FBSnapshotTestCase (~> 2.0)
- Nimble
- Quick
- Quick (1.1.0)
- AMPopTip (4.2.0)
- iOSSnapshotTestCase (2.2.0):
- iOSSnapshotTestCase/SwiftSupport (= 2.2.0)
- iOSSnapshotTestCase/Core (2.2.0)
- iOSSnapshotTestCase/SwiftSupport (2.2.0):
- iOSSnapshotTestCase/Core
- Nimble (7.3.4)
- Nimble-Snapshots (6.4.1):
- Nimble-Snapshots/Core (= 6.4.1)
- Nimble-Snapshots/Core (6.4.1):
- iOSSnapshotTestCase (~> 2.0)
- Nimble (~> 7.0)
- Quick (2.2.0)

DEPENDENCIES:
- AMPopTip (from `../`)
- Nimble (= 6.1.0)
- Nimble-Snapshots (= 4.4.0)
- Quick (= 1.1.0)
- Nimble
- Nimble-Snapshots
- Quick

SPEC REPOS:
https://github.com/cocoapods/specs.git:
- FBSnapshotTestCase
trunk:
- iOSSnapshotTestCase
- Nimble
- Nimble-Snapshots
- Quick
Expand All @@ -32,12 +31,12 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
AMPopTip: ebba6ae1859d3b22a68562e1baf8ea0e159b545e
FBSnapshotTestCase: 094f9f314decbabe373b87cc339bea235a63e07a
Nimble: c53e6903fee94041b90ded74f135820437d8bf59
Nimble-Snapshots: e743439f26c2fa99d8f7e0d7c01c99bcb40aa6f2
Quick: dafc587e21eed9f4cab3249b9f9015b0b7a7f71d
AMPopTip: 43444807604e7d38713fc15b93fa65fbe369227c
iOSSnapshotTestCase: 415bd84f9dbba4ff45fede49d800bc7332fbedac
Nimble: 051e3d8912d40138fa5591c78594f95fb172af37
Nimble-Snapshots: 438fb1a6fa3c655e246fc9ac375f6cd2964d759a
Quick: 7fb19e13be07b5dfb3b90d4f9824c855a11af40e

PODFILE CHECKSUM: 68d6239712fba8e0da2721828fdb2901c0ef7977
PODFILE CHECKSUM: 427d9003aa8e98a2af5857ca6737809dc88b2119

COCOAPODS: 1.5.3
COCOAPODS: 1.8.4
15 changes: 7 additions & 8 deletions Demo/Pods/Local Podspecs/AMPopTip.podspec.json

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

51 changes: 25 additions & 26 deletions Demo/Pods/Manifest.lock

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

38 changes: 38 additions & 0 deletions Demo/Pods/Nimble-Snapshots/CurrentTestCaseTracker.swift

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

Loading