-
Notifications
You must be signed in to change notification settings - Fork 2
/
YStepperView.podspec
27 lines (21 loc) · 981 Bytes
/
YStepperView.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
#
# Be sure to run `pod spec lint YStepperView.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
Pod::Spec.new do |s|
s.name = 'YStepperView'
s.version = '0.0.3'
s.summary = 'Custom Stepper View with visible value change.'
s.description = <<-DESC
YStepperView is custom Stepper View. It is similar to the native Stepper view in iOS but allow user to see the current value of YStepperView.
DESC
s.homepage = 'https://github.com/yuvirajsinh/YStepperView'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = 'yuvirajsinh'
s.platform = :ios, '7.0'
s.source = { :git => 'https://github.com/yuvirajsinh/YStepperView.git', :tag => s.version.to_s }
s.source_files = 'YStepperView/*.{h,m}'
s.frameworks = 'QuartzCore'
s.requires_arc = true
end