Skip to content
Open
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
49 changes: 49 additions & 0 deletions Example/Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
//
// Package.swift
// PopupDialog_Example
//
// Created by Diego Jimenez on 9/10/25.
// Copyright © 2025 CocoaPods. All rights reserved.
//


// swift-tools-version:5.9
import PackageDescription

let package = Package(
name: "PopupDialog",
platforms: [
.iOS(.v10)
],
products: [
.library(
name: "PopupDialog",
targets: ["PopupDialog"]
)
],
dependencies: [
// Pod dependency mapped to SPM:
.package(url: "https://github.com/KyoheiG3/DynamicBlurView.git", from: "4.0.0")
],
targets: [
.target(
name: "PopupDialog",
dependencies: [
.product(name: "DynamicBlurView", package: "DynamicBlurView")
],
// Keep your current CocoaPods layout — no file moves needed:
path: "PopupDialog/Classes",
exclude: [],
resources: [],
swiftSettings: [
// The podspec declares Swift 5.0; nothing to force here normally.
// If you strictly need it: .swiftLanguageVersion(.v5)
]
),
.testTarget(
name: "PopupDialogTests",
dependencies: ["PopupDialog"],
path: "Tests/PopupDialogTests"
)
]
)
7 changes: 0 additions & 7 deletions Example/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,4 @@ target 'PopupDialog_Example' do
pod 'PopupDialog', :path => '../'
pod 'SwiftLint', '~> 0.35'

target 'PopupDialog_Tests' do
inherit! :search_paths

pod 'Nimble', '~> 7.3.1'
pod 'iOSSnapshotTestCase', '~> 6.0.2'

end
end
16 changes: 2 additions & 14 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,26 +1,16 @@
PODS:
- DynamicBlurView (4.0.0)
- iOSSnapshotTestCase (6.0.3):
- iOSSnapshotTestCase/SwiftSupport (= 6.0.3)
- iOSSnapshotTestCase/Core (6.0.3)
- iOSSnapshotTestCase/SwiftSupport (6.0.3):
- iOSSnapshotTestCase/Core
- Nimble (7.3.4)
- PopupDialog (1.1.1):
- DynamicBlurView (~> 4.0)
- SwiftLint (0.35.0)

DEPENDENCIES:
- iOSSnapshotTestCase (~> 6.0.2)
- Nimble (~> 7.3.1)
- PopupDialog (from `../`)
- SwiftLint (~> 0.35)

SPEC REPOS:
trunk:
- DynamicBlurView
- iOSSnapshotTestCase
- Nimble
- SwiftLint

EXTERNAL SOURCES:
Expand All @@ -29,11 +19,9 @@ EXTERNAL SOURCES:

SPEC CHECKSUMS:
DynamicBlurView: ccf9acd2b20c883cc2c72e3524a04d8d3ee20533
iOSSnapshotTestCase: 944a73f6d9676302811a86c0cf35f0e6ef5ab2a0
Nimble: 051e3d8912d40138fa5591c78594f95fb172af37
PopupDialog: 720c92befd8bc23c13442254945213db5612f149
SwiftLint: 5553187048b900c91aa03552807681bb6b027846

PODFILE CHECKSUM: 07c617a2f6b270e1e612e31d4f4d376badedc104
PODFILE CHECKSUM: f195da11612c103bdb73f6ab4cc0f3186b4b2eb1

COCOAPODS: 1.8.1
COCOAPODS: 1.16.2
60 changes: 0 additions & 60 deletions Example/Pods/Local Podspecs/iOSSnapshotTestCase.podspec.json

This file was deleted.

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

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

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading