-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathATHKit.podspec
More file actions
20 lines (17 loc) · 834 Bytes
/
ATHKit.podspec
File metadata and controls
20 lines (17 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "ATHKit"
s.version = "0.1.3"
s.summary = "ATHKit is a collection of customizable UI components such as ImagePickerController and more."
s.homepage = "https://github.com/Athlee/ATHKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Eugene Mozharovsky" => "mozharovsky@live.com" }
s.social_media_url = "http://twitter.com/dottieyottie"
s.platform = :ios, "9.0"
s.ios.deployment_target = "9.0"
s.source = { :git => "https://github.com/Athlee/ATHKit.git", :tag => s.version }
s.source_files = "Source/*.swift"
s.resources = "Source/*.{storyboard,xcassets}"
s.requires_arc = true
s.dependency "Material"
s.dependency "ImagePickerKit"
end