-
-
Notifications
You must be signed in to change notification settings - Fork 113
/
MultiSlider.podspec
28 lines (19 loc) · 1.03 KB
/
MultiSlider.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
Pod::Spec.new do |s|
s.name = "MultiSlider"
s.version = "2.2.0"
s.summary = "UISlider clone with multiple thumbs and values, optional snap intervals, optional value labels."
s.homepage = "https://github.com/yonat/MultiSlider"
s.screenshots = ["https://raw.githubusercontent.com/yonat/MultiSlider/master/Screenshots/MultiSlider.png"]
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yonat Sharon" => "[email protected]" }
s.social_media_url = "https://twitter.com/yonatsharon"
s.swift_versions = ['4.2', '5.0']
s.platform = :ios, "11.0"
s.requires_arc = true
s.weak_framework = 'SwiftUI'
s.source = { :git => "https://github.com/yonat/MultiSlider.git", :tag => s.version }
s.source_files = "Sources/*.swift"
s.resource_bundles = {'MultiSlider' => ['Sources/PrivacyInfo.xcprivacy']}
s.dependency 'SweeterSwift'
s.pod_target_xcconfig = { 'LD_RUNPATH_SEARCH_PATHS' => '$(FRAMEWORK_SEARCH_PATHS)' } # fix Interface Builder render error
end