-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSauce.podspec
32 lines (22 loc) · 1012 Bytes
/
Sauce.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
Pod::Spec.new do |s|
s.name = "Sauce"
s.version = "0.0.1"
s.summary = "Build concise, reusable and composable Collection View data sources."
s.description = <<-DESC
Sauce provides utilities to build reusable and composable data sources for
your Collection Views. It's inspired by the WWDC 2014 Session "Advanced
User Interfaces Using Collection View."
DESC
s.homepage = "https://github.com/ahti/Sauce"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = { "Lukas Stabe" => "lukas@stabe.de" }
s.ios.deployment_target = "9.0"
# s.tvos.deployment_target = "9.0"
s.source = { :git => "https://github.com/ahti/Sauce.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"
s.test_spec 'Tests' do |test|
test.source_files = "Tests/**/*.swift"
test.exclude_files = "Tests/LinuxMain.swift"
test.framework = "XCTest"
end
end