-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathSwiftRaisedTab.podspec
More file actions
19 lines (16 loc) · 901 Bytes
/
SwiftRaisedTab.podspec
File metadata and controls
19 lines (16 loc) · 901 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 = "SwiftRaisedTab"
s.version = "0.2.0"
s.summary = "SwiftRaisedTab recreates raised center tab item seen in many social networking apps."
s.description = <<-DESC
SwiftRaisedTab is a simple library written in Swift that recreates raised center tab item seen in many social networking apps.
DESC
s.homepage = "https://github.com/itsKaynine/SwiftRaisedTab"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Punnawut Khowkittipaiboon" => "me@itskaynine.com" }
s.source = { :git => "https://github.com/itsKaynine/SwiftRaisedTab.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/itsKaynine'
s.ios.deployment_target = '8.0'
s.source_files = 'SwiftRaisedTab/*.{m,h,swift}'
s.requires_arc = true
end