forked from yonat/MultiSelectSegmentedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMultiSelectSegmentedControl.podspec
More file actions
29 lines (18 loc) · 953 Bytes
/
MultiSelectSegmentedControl.podspec
File metadata and controls
29 lines (18 loc) · 953 Bytes
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
Pod::Spec.new do |s|
s.name = "MultiSelectSegmentedControl"
s.version = "1.1.2"
s.summary = "Multiple-Selection Segmented Control"
s.description = <<-DESC
A subclass of UISegmentedControl that supports selection multiple segments.
No need for images - works with the builtin styles of UISegmentedControl.
DESC
s.homepage = "https://github.com/yonat/MultiSelectSegmentedControl"
s.screenshots = "http://ootips.org/yonat/wp-content/uploads/2013/04/MultiSelectSegmentedControl.png"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Yonat Sharon" => "yonat@ootips.org" }
s.social_media_url = "http://twitter.com/yonatsharon"
s.platform = :ios, "5.0"
s.source = { :git => "https://github.com/yonat/MultiSelectSegmentedControl.git", :tag => "1.1.2" }
s.source_files = "MultiSelectSegmentedControl.{h,m}"
s.requires_arc = true
end