forked from HHK1/PryntTrimmerView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
PryntTrimmerView.podspec
28 lines (24 loc) · 1.23 KB
/
PryntTrimmerView.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
27
28
#
# Be sure to run `pod lib lint PryntTrimmerView.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 = 'PryntTrimmerView'
s.version = '4.0.2'
s.summary = 'A set of tools written in swift to help you trim and crop a video.'
s.description = <<-DESC
First tool is a trimmer view to help you select a portion of an AVAsset. It provides you with a customizable
component that indicates the portion of the video selected, thanks to image thumbnails of the asset.
Second tool is a crop view, to preview a video and select the part of the video you want to crop.
DESC
s.homepage = 'https://github.com/HHK1/PryntTrimmerView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'henryhuck@hotmail.fr' => 'henryhuck@hotmail.fr' }
s.source = { :git => 'https://github.com/HHK1/PryntTrimmerView.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'Sources/PryntTrimmerView/**/*'
s.swift_version = '5.0'
end