forked from JosephDuffy/GatheredKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGatheredKit.podspec
More file actions
21 lines (21 loc) · 794 Bytes
/
Copy pathGatheredKit.podspec
File metadata and controls
21 lines (21 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
Pod::Spec.new do |s|
s.name = "GatheredKit"
s.version = "0.1.1"
s.summary = <<-SUMM
A consistent and easy to use API for various iOS data
sources
SUMM
s.description = <<-DESC
A framework that provides a consistent and easy to use API for various data sources offered by iOS
DESC
s.homepage = "https://github.com/JosephDuffy/GatheredKit"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = "Joseph Duffy"
s.source = {
:git => "https://github.com/JosephDuffy/GatheredKit.git",
:tag => "v#{s.version}"
}
s.source_files = "Source/**/*.{swift,h,m}"
s.platform = :ios, '9.0'
s.frameworks = "SystemConfiguration"
end