forked from Squarespace/simple-source
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleSource.podspec
More file actions
22 lines (20 loc) · 983 Bytes
/
SimpleSource.podspec
File metadata and controls
22 lines (20 loc) · 983 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 = "SimpleSource"
s.version = "1.0.0"
s.summary = "Composable, easy to use data sources for UITableView and UICollectionView."
s.homepage = "https://github.com/Squarespace/simple-source"
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.authors = { "Morten Heiberg" => "mheiberg@squarespace.com", "Thor Frolich" => "tfrolich@squarespace.com" }
s.platform = :ios, '9.0'
s.swift_version = "4.2"
s.requires_arc = true
s.source = { :git => 'https://github.com/Squarespace/simple-source.git', :tag => '1.0.0' }
s.source_files = "Sources/**/*.{h,m,swift}"
s.module_name = "SimpleSource"
s.dependency 'Dwifft', '0.7'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/**/*.swift'
test_spec.dependency 'Nimble'
test_spec.dependency 'Quick'
end
end