-
Notifications
You must be signed in to change notification settings - Fork 112
/
ICGVideoTrimmer.podspec
30 lines (18 loc) · 977 Bytes
/
ICGVideoTrimmer.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
29
30
Pod::Spec.new do |s|
s.name = "ICGVideoTrimmer"
s.version = "1.1"
s.summary = "A library for quick video trimming."
s.description = <<-DESC
ICGVideoTrimmer provides an easy-to-use tool for trimming videos in iOS apps. It was built to mimic the look and behavior of Instagram’s video trimmer.
DESC
s.homepage = "https://github.com/itsmeichigo/ICGVideoTrimmer"
s.screenshots = "https://raw.githubusercontent.com/itsmeichigo/ICGVideoTrimmer/master/trimmer.gif"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Huong Do" => "[email protected]" }
s.social_media_url = "http://twitter.com/itsmeichigo"
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/itsmeichigo/ICGVideoTrimmer.git", :tag => "1.1" }
s.source_files = "Source"
s.framework = "UIKit", "MobileCoreServices", "AVFoundation"
s.requires_arc = true
end