-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHairLine.podspec
More file actions
19 lines (15 loc) · 784 Bytes
/
Copy pathHairLine.podspec
File metadata and controls
19 lines (15 loc) · 784 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'HairLine'
s.version = '1.0.1'
s.summary = 'This is the first release of this project.'
s.description = <<-DESC
Hairline draws crisp separators in Tableview / Collection View or NavigationBar . Often custom design requires separators which can't be achieved with native separators as its a shadow.
DESC
s.homepage = 'https://github.com/vinaychopra90/HairLine'
s.license = { :type => 'MIT', :file => 'LICENSE.md' }
s.author = { '<Vinay Chopra>' => '<vinaychopra90@gmail.com>' }
s.source = { :git => 'https://github.com/vinaychopra90/HairLine.git', :tag => s.version.to_s }
s.swift_version = '3.2'
s.ios.deployment_target = '9.0'
s.source_files = 'HairLine/HairLine.swift'
end