-
Notifications
You must be signed in to change notification settings - Fork 8
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
Jari Kalinainen
committed
Sep 21, 2018
1 parent
bc24270
commit 8e68657
Showing
5 changed files
with
35 additions
and
30 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -7,26 +7,27 @@ | |
# | ||
|
||
Pod::Spec.new do |s| | ||
s.name = 'UIImageCropper' | ||
s.version = '1.3.4' | ||
s.summary = 'Simple Image cropper for UIImage and UIImagePickerController with customisable aspect ratio.' | ||
s.name = 'UIImageCropper' | ||
s.version = '1.4.0' | ||
s.summary = 'Simple Image cropper for UIImage and UIImagePickerController with customisable aspect ratio.' | ||
|
||
# This description is used to generate tags and improve search results. | ||
# * Think: What does it do? Why did you write it? What is the focus? | ||
# * Try to keep it short, snappy and to the point. | ||
# * Write the description between the DESC delimiters below. | ||
# * Finally, don't worry about the indent, CocoaPods strips it! | ||
|
||
s.description = <<-DESC | ||
Simple Image cropper for UIImage and UIImagePickerController with customisable crop aspect ratio. Made purely with Swift4! | ||
s.description = <<-DESC | ||
Simple Image cropper for UIImage and UIImagePickerController with customisable crop aspect ratio. Made purely with Swift! | ||
Replaces the iOS "crop only to square" functionality. Easy few line setup with delegate method. With possibility to localized button texts. | ||
See example for usage details. | ||
DESC | ||
|
||
s.homepage = 'https://github.com/jvk75/UIImageCropper' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Jari Kalinainen' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/jvk75/UIImageCropper.git', :tag => s.version.to_s } | ||
s.homepage = 'https://github.com/jvk75/UIImageCropper' | ||
s.license = { :type => 'MIT', :file => 'LICENSE' } | ||
s.author = { 'Jari Kalinainen' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/jvk75/UIImageCropper.git', :tag => s.version.to_s } | ||
s.swift_version = '4.2' | ||
|
||
s.ios.deployment_target = '10.0' | ||
|
||
|
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