forked from matthewpalmer/Regift
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Regift.podspec
21 lines (18 loc) · 897 Bytes
/
Regift.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "Regift"
s.version = "1.2.0"
s.summary = "Regift helps you easily convert a video to a GIF on iOS."
s.description = <<-DESC
Regift helps you easily convert a video to a GIF on iOS.
Create a gif from a given video URL, tweaking the frame count, delay time, and number of loops.
DESC
s.homepage = "https://github.com/matthewpalmer/Regift"
s.license = 'MIT'
s.author = { "matthewpalmer" => "[email protected]" }
s.source = { :git => "https://github.com/matthewpalmer/Regift.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/_matthewpalmer'
s.ios.deployment_target = '8.0'
s.osx.deployment_target = '10.10'
s.requires_arc = true
s.source_files = 'Regift/*.{m,h,swift}'
end