-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCPVideoKit.podspec
More file actions
25 lines (13 loc) · 843 Bytes
/
CPVideoKit.podspec
File metadata and controls
25 lines (13 loc) · 843 Bytes
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
Pod::Spec.new do |s|
s.name = "CPVideoKit"
s.version = "0.1.2"
s.summary = "A small yet powerful video cropping and scaling library."
s.description = "A small yet powerful video cropping and scaling library that can take an `AVAsset`, crop it, rescale it, and export it to a specified file. It also contains helper methods for calculating the crop area."
s.homepage = "https://github.com/canpoyrazoglu/CPVideoKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Can Poyrazoğlu" => "can@canpoyrazoglu.com" }
s.social_media_url = "http://twitter.com/canpoyrazoglu"
s.platform = :ios, "8.0"
s.source = { :git => "https://github.com/canpoyrazoglu/CPVideoKit.git", :tag => s.version.to_s }
s.source_files = "CPVideoKit/Classes/**/*.{h,m}"
end