-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathATHMultiSelectionSegmentedControl.podspec
More file actions
22 lines (16 loc) · 1.08 KB
/
ATHMultiSelectionSegmentedControl.podspec
File metadata and controls
22 lines (16 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = 'ATHMultiSelectionSegmentedControl'
s.version = '0.2.2'
s.summary = 'A control mimicking UISegmentedControl behaviour but allowing for multiple segment selection'
s.description = <<-DESC
ATHMultiSelectionSegmentedControl is a UIView based control that mimicks UISegmentedControl's API but also allows for multiple segment selection. It's battle tested and fully tested. If you find any bugs or want to suggest improvements please feel free to contribute.'
DESC
s.homepage = 'https://github.com/attheodo/ATHMultiSelectionSegmentedControl'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'attheodo' => 'at@atworks.gr' }
s.source = { :git => 'https://github.com/attheodo/ATHMultiSelectionSegmentedControl.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/attheodo'
s.ios.deployment_target = '8.0'
s.source_files = 'ATHMultiSelectionSegmentedControl/Classes/**/*'
s.frameworks = 'UIKit', 'Foundation', 'QuartzCore'
end