-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathUIView-Shimmer.podspec
29 lines (18 loc) · 1018 Bytes
/
UIView-Shimmer.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
Pod::Spec.new do |spec|
spec.name = "UIView-Shimmer"
spec.version = "1.0.4"
spec.summary = "UIView extension to apply shimmering effect to any view."
spec.description = <<-DESC
Mark any UIView element as template view and add shimmering effect on it with simple function.
DESC
spec.homepage = "https://github.com/omerfarukozturk/UIView-Shimmer"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Ömer Faruk Öztürk" => "[email protected]" }
spec.platform = :ios, "10.0"
spec.swift_version = "5.3"
spec.source = { :git => "https://github.com/omerfarukozturk/UIView-Shimmer.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/UIView-Shimmer/**/*.{h,m,swift}"
spec.resources = 'UIView-Shimmer/Resources/PrivacyInfo.xcprivacy'
# spec.public_header_files = "Classes/**/*.h"
end