forked from metasmile/NSGIF2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NSGIF2.podspec
executable file
·34 lines (27 loc) · 1.56 KB
/
NSGIF2.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
31
32
33
34
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "NSGIF2"
s.version = "1.5"
s.summary = "Create a GIF from the provided video file url."
s.homepage = "https://github.com/metasmile/NSGIF2"
s.screenshots = "https://raw.githubusercontent.com/metasmile/NSGIF2/master/title.png"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# Licensing your code is important. See http://choosealicense.com for more info.
# CocoaPods will detect a license file if there is a named LICENSE*
# Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
#
s.license = "MIT (example)"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Brian Lee" => "[email protected]", "Sebastian Dobrincu (original repo)" => "[email protected]" }
s.platform = :ios
s.ios.deployment_target = '8.0'
s.source = { :git => 'https://github.com/metasmile/NSGIF2.git', :tag => "#{s.version}" }
s.source_files = "NSGIF/*.{h,m}"
s.requires_arc = true
end