-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDSBottomSheet.podspec
More file actions
17 lines (15 loc) · 854 Bytes
/
DSBottomSheet.podspec
File metadata and controls
17 lines (15 loc) · 854 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "DSBottomSheet"
spec.version = "0.3.0"
spec.summary = "DSBottomSheet makes it easy to add custom bottom sheets to your SwiftUI apps."
spec.description = "BottomSheet is a SwiftUI library with tools for creating custom bottom sheet and adding them to your iOS apps."
spec.homepage = "https://github.com/danielsaidi"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Daniel Saidi" => "daniel.saidi@gmail.com" }
spec.source = { :git => "https://github.com/mbcalisto/DsBottomSheet.git", :tag => "0.3.0" }
spec.social_media_url = "https://twitter.com/danielsaidi"
spec.platform = :ios, "13.0"
spec.swift_version = "5.3"
spec.source_files = "Sources/**/*.swift"
spec.resources = "Sources/BottomSheet/Resources/*.xcassets"
end