Gifu/Gifu.podspec

18 lines
695 B
Plaintext
Raw Permalink Normal View History

2015-12-02 22:38:03 +00:00
Pod::Spec.new do |s|
s.name = "Gifu"
2018-09-28 06:46:20 +00:00
s.version = "3.2.0"
2016-10-07 20:36:40 +00:00
s.summary = "High-performance animated GIF support for iOS "
2016-05-28 18:40:17 +00:00
s.homepage = "https://github.com/kaishin/Gifu"
2015-12-02 22:38:03 +00:00
s.social_media_url = "http://twitter.com/kaishin"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Reda Lemeden" => "git@kaishin.haz.email" }
2016-05-28 18:40:17 +00:00
s.source = { :git => "https://github.com/kaishin/Gifu.git", :tag => "v#{s.version}", :submodules => true }
2016-10-07 20:59:40 +00:00
s.platform = :ios, "9.0"
2018-02-17 15:14:53 +00:00
s.platform = :tvos, "9.0"
s.swift_version = "4.2"
2016-05-28 18:40:17 +00:00
s.ios.source_files = "Source/**/*.{h,swift}"
2018-02-17 15:14:53 +00:00
s.tvos.source_files = "Source/**/*.{h,swift}"
2016-10-07 20:59:40 +00:00
s.ios.deployment_target = "9.0"
2018-02-17 15:14:53 +00:00
s.tvos.deployment_target = "9.0"
2015-12-02 22:38:03 +00:00
end