forked from miller-ms/MMSCropView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MMSCropView.podspec
26 lines (23 loc) · 1.09 KB
/
MMSCropView.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Be sure to run `pod lib lint MMSCropView.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MMSCropView"
s.version = "1.0.5"
s.summary = "A view controller supporting the feature to crop an image."
s.description = <<-DESC
This class supports the feature for dragging a rectangle over a UIImageView and returning a UIImage with the pixels beneath the crop rectangle cropped from the underlying image.
DESC
s.homepage = "https://github.com/miller-ms/MMSCropView"
s.screenshots = "https://raw.githubusercontent.com/miller-ms/MMSCropView/master/screenshot.png"
s.license = 'MIT'
s.author = { "William Miller" => "[email protected]" }
s.source = { :git => "https://github.com/miller-ms/MMSCropView.git", :tag => s.version.to_s }
s.platform = :ios, '8.3'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
end