forked from gmarm/BetterSegmentedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBCSegmentedControl.podspec
More file actions
21 lines (20 loc) · 919 Bytes
/
BCSegmentedControl.podspec
File metadata and controls
21 lines (20 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
@version = "1.1"
Pod::Spec.new do |s|
s.name = "BCSegmentedControl"
s.version = @version
s.summary = "An easy to use, customizable replacement for UISegmentedControl & UISwitch."
s.description = <<-DESC
BetterSegmentedControl is an easy to use, customizable replacement for UISegmentedControl and UISwitch written in Swift.
DESC
s.homepage = "https://github.com/battleent/BetterSegmentedControl"
s.license = 'MIT'
s.author = { "George Marmaridis" => "gmarmas@gmail.com" }
s.source = { :git => "https://github.com/battleent/BetterSegmentedControl.git", :tag => "#{s.version}" }
s.social_media_url = 'https://twitter.com/gmarmas'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.frameworks = 'UIKit'
s.dependency "RxSwift", ">= 4.0.0"
s.dependency "RxCocoa", ">= 4.0.0"
end