forked from marty-suzuki/SABlurImageView
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SABlurImageView.podspec
35 lines (28 loc) · 1.28 KB
/
SABlurImageView.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
35
#
# Be sure to run `pod lib lint SABlurImageView.podspec' to ensure this is a
# valid spec and remove all comments before submitting the spec.
#
# Any lines starting with a # are optional, but encouraged
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
last_commit = `git rev-list --tags --max-count=1`.strip
last_tag = `git describe --tags #{last_commit}`.strip
s.name = "SABlurImageView"
s.version = last_tag
s.summary = "You can use blur effect and it's animation easily to call only two methods."
s.homepage = "https://github.com/marty-suzuki/SABlurImageView"
s.license = 'MIT'
s.author = { "Taiki Suzuki" => "[email protected]" }
s.source = { :git => "https://github.com/marty-suzuki/SABlurImageView.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/marty_suzuki'
s.ios.frameworks = 'UIKit', 'QuartzCore', 'Accelerate'
s.tvos.frameworks = 'UIKit', 'QuartzCore', 'Accelerate'
s.macos.frameworks = 'AppKit', 'QuartzCore', 'Accelerate'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
s.macos.deployment_target = '10.9'
s.source_files = 'Sources/**/*.{swift}'
s.swift_version = '5.1'
end