Skip to content

Commit

Permalink
0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
fermoya committed Jan 20, 2020
1 parent d40be94 commit a02f626
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions SwiftUIPager.podspec
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

0 comments on commit a02f626

Please sign in to comment.