update podspec

add screenshot
This commit is contained in:
Paul Zabelin
2018-02-24 19:08:37 -08:00
parent 11e5e09d9f
commit 29360233fd
2 changed files with 11 additions and 11 deletions

View File

@@ -1,20 +1,20 @@
Pod::Spec.new do |s|
s.name = "PerspectiveTransform"
s.version = "0.2.0"
s.summary = "Perspective Transform calculates CATransform3D"
s.name = 'PerspectiveTransform'
s.version = '0.2.0'
s.summary = 'Perspective Transform calculates CATransform3D'
s.description = <<-DESC
Calculates CATransform3D to transform rectangular frame to convex quadrilateral
Allows to overlay images in UIView given 4 points.
DESC
s.homepage = "https://github.com/paulz/PerspectiveTransform"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
authorPage = 'https://github.com/paulz'
s.homepage = "#{authorPage}/#{s.name}"
s.screenshots = "#{s.homepage}/wiki/images/container-with-green-polygon.png"
s.license = 'MIT'
s.author = { 'Paul Zabelin' => 'https://github.com/paulz' }
s.source = { :git => "https://github.com/paulz/PerspectiveTransform.git", :tag => s.version.to_s }
s.author = { 'Paul Zabelin' => authorPage }
s.source = { :git => "#{s.homepage}.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/iospaulz'
s.platform = :ios, '10.0'
s.platform = :ios, '11.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'