forked from paulz/ImageCoordinateSpace
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageCoordinateSpace.podspec
More file actions
21 lines (21 loc) · 1.08 KB
/
ImageCoordinateSpace.podspec
File metadata and controls
21 lines (21 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.cocoapods_version = '>= 0.36'
s.name = 'ImageCoordinateSpace'
s.version = '0.3.1'
s.summary = 'Convert image coordinates to image view depending on content mode'
s.description = <<-DESC
Convert CGPoint and CGRect between UIImage and UIImageView coordinates respecting UIViewContentMode and using UICoordinateSpace
DESC
s.homepage = 'https://github.com/paulz/ImageCoordinateSpace'
s.screenshot = 'https://raw.githubusercontent.com/paulz/ImageCoordinateSpace/master/Example/demo.gif'
s.license = 'MIT'
s.author = { 'Paul Zabelin' => 'https://github.com/paulz' }
s.source = { :git => 'https://github.com/paulz/ImageCoordinateSpace.git',
:tag => s.version.to_s
}
s.social_media_url = 'https://twitter.com/iospaulz'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'ImageCoordinateSpace/**/*.{h,swift}'
s.frameworks = 'UIKit'
end