-
-
Notifications
You must be signed in to change notification settings - Fork 173
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,24 @@ | ||
Pod::Spec.new do |s| | ||
|
||
s.name = 'SwiftUIPager' | ||
s.version = '0.0.5' | ||
s.summary = 'Native horizontal pager for SwiftUI. Easily to use, easy to customize.' | ||
s.name = "SwiftUIPager" | ||
s.version = "0.0.6" | ||
s.summary = "Native horizontal pager for SwiftUI. Easily to use, easy to customize." | ||
|
||
s.description = <<-DESC | ||
This framework provides a horizontal pager build with native SwiftUI views. Views are recycled, so you do not have to worry about memory issues. It is very easy to use and lets you customize it. For example, you can change the aspect ratio of the page displayed, the spacing between pages or you can make it interactive. | ||
DESC | ||
|
||
s.homepage = 'https://medium.com/@fmdr.ct' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'fermoya' => '[email protected]' } | ||
s.homepage = "https://medium.com/@fmdr.ct" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "fermoya" => "[email protected]" } | ||
|
||
s.platforms = { :ios => '13.0', :osx => '10.15', :watchos => '6.0' } | ||
s.swift_version = '5.1' | ||
s.platforms = { :ios => "13.0", :osx => "10.15", :watchos => "6.0" } | ||
s.swift_version = "5.1" | ||
|
||
s.source = { :git => 'https://github.com/fermoya/SwiftUIPager.git', :tag => '#{s.version}' } | ||
s.source_files = 'Sources/SwiftUIPager/**/*' | ||
s.source = { :git => "https://github.com/fermoya/SwiftUIPager.git", :tag => "#{s.version}" } | ||
s.source_files = "Sources/SwiftUIPager/**/*" | ||
|
||
s.xcconfig = { 'SWIFT_VERSION' => '5.1' } | ||
s.documentation_url = 'https://github.com/fermoya/SwiftUIPager/blob/master/README.md' | ||
s.xcconfig = { "SWIFT_VERSION" => "5.1" } | ||
s.documentation_url = "https://github.com/fermoya/SwiftUIPager/blob/master/README.md" | ||
|
||
end |