forked from Minguel/MAAnimatedSegmentedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MAAnimatedSegmentedControl.podspec
33 lines (28 loc) · 1.27 KB
/
MAAnimatedSegmentedControl.podspec
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
30
31
32
33
#
# Be sure to run `pod lib lint MAAnimatedSegmentedControl.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "MAAnimatedSegmentedControl"
s.version = "0.1.1"
s.summary = "UIControl subclass based on Segmented with rebound"
s.description = <<-DESC
MAAnimatedSegmentedControl is a UIControl based on
UISegmentedControl with rounded focus and awesome animation.
DESC
s.homepage = "https://github.com/Minguel/MAAnimatedSegmentedControl"
# s.screenshots = "www.example.com/screenshots_1", "www.example.com/screenshots_2"
s.license = 'MIT'
s.author = { "Miguel Ángel Aragonés Castañeda" => "[email protected]" }
s.source = { :git => "https://github.com/Minguel/MAAnimatedSegmentedControl.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/iminguel'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'MAAnimatedSegmentedControl' => ['Pod/Assets/*.png']
}
end