forked from hitendradeveloper/HSCenterSlider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HSCenterSlider.podspec
43 lines (35 loc) · 1.63 KB
/
HSCenterSlider.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
36
37
38
39
40
41
42
43
#
# Be sure to run `pod lib lint HSCenterSlider.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'HSCenterSlider'
s.version = '2.0.1'
s.summary = 'Easy to use double side center slider, that can show value in (A,B) Range.'
s.description = <<-DESC
Easy to use double side center slider, that can show value in (A,B) Range.
Where center of the slider is (A+B)/2.
Supports both Horizonal and Verticle UI for the slider.
E.g.
1. If your range if (-100,100) then center point of slider will be 0.
1. If your range if (-80,100) then center point of slider will be 10.
DESC
s.homepage = 'https://github.com/hitendradeveloper/HSCenterSlider'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'hitendradeveloper' => '[email protected]' }
s.source = { :git => 'https://github.com/hitendradeveloper/HSCenterSlider.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/hitendrahckr'
s.ios.deployment_target = '9.0'
s.swift_versions = ['4.0','4.1','4.2','4.3','5.0']
s.source_files = 'HSCenterSlider/Classes/**/*'
s.resource_bundles = {
'HSCenterSlider' => ['HSCenterSlider/Assets/**/*']
}
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.dependency 'HSRange', '5.0.11'
end