forked from alokc83/MASegmentedControl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MASegmentedControl.podspec
50 lines (35 loc) · 1.99 KB
/
MASegmentedControl.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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Pod::Spec.new do |spec|
spec.name = "MASegmentedControl"
spec.version = "0.0.3"
spec.summary = "Very customizable segmented control for iOS."
spec.description = "Segmented control that is very customizable and can take any shape and size."
spec.homepage = "https://github.com/alokc83/MASegmentedControl"
# spec.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
spec.license = "MIT"
spec.author = { "Alok Choudhary" => "[email protected]" }
spec.social_media_url = "https://twitter.com/alokc83"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# If this Pod runs only on iOS or OS X, then specify the platform and
# the deployment target. You can optionally include the target after the platform.
#
spec.platform = :ios, "11.0"
# When using multiple platforms
# spec.ios.deployment_target = "5.0"
# spec.osx.deployment_target = "10.7"
# spec.watchos.deployment_target = "2.0"
# spec.tvos.deployment_target = "9.0"
spec.source = { :git => "https://github.com/alokc83/MASegmentedControl.git", :tag => "#{spec.version}" }
spec.framework = "UIKit"
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# CocoaPods is smart about how it includes source code. For source files
# giving a folder will include any swift, h, m, mm, c & cpp files.
# For header files it will include any header in the folder.
# Not including the public_header_files will make all headers public.
#
spec.source_files = "MASegmentedControl", "MASegmentedControl/**/*.{h,m,swift}"
spec.exclude_files = "Classes/Exclude"
spec.requires_arc = true
spec.swift_version = "4.2"
end