Skip to content

Commit ef189f6

Browse files
committed
feat: create podspec
1 parent 5a6db86 commit ef189f6

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

PageSheet.podspec

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
Pod::Spec.new do |s|
2+
s.name = "PageSheet"
3+
s.version = "1.2.1"
4+
s.summary = "Customizable sheets using UISheetPresentationController in SwiftUI."
5+
s.description = <<-DESC
6+
Customizable sheet presentations in SwiftUI. Using UISheetPresentationController under the hood.
7+
DESC
8+
s.homepage = "https://github.com/ericlewis/PageSheet"
9+
s.license = { :type => "MIT", :file => "LICENSE.md" }
10+
s.author = { "Eric Lewis" => "[email protected]" }
11+
s.social_media_url = "https://twitter.com/ericlewis"
12+
s.ios.deployment_target = "15.0"
13+
s.source = { :git => "https://github.com/ericlewis/pagesheet.git", :tag => s.version.to_s }
14+
s.source_files = "Sources/**/*"
15+
end

0 commit comments

Comments
 (0)