-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTiltUpTest.podspec
More file actions
26 lines (19 loc) · 870 Bytes
/
TiltUpTest.podspec
File metadata and controls
26 lines (19 loc) · 870 Bytes
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
Pod::Spec.new do |s|
s.name = 'TiltUpTest'
s.version = '5.0.2'
s.summary = 'Official Clutter SDK in Swift to access core iOS test helpers.'
s.description = <<-DESC
TiltUpTest is a framework that provides utilities and mocks that are useful for
writing unit tests for components that are written using TiltUp.
DESC
s.homepage = 'https://github.com/clutter/TiltUp'
s.author = { 'Clutter' => 'tech@clutter.com' }
s.license = 'MIT'
s.ios.deployment_target = '14.0'
s.swift_versions = ['5.1']
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.frameworks = 'XCTest'
s.dependency 'TiltUp', "= #{s.version}"
s.source = { :git => "git@github.com:clutter/TiltUp.git", :tag => "#{s.version}" }
s.source_files = 'Sources/TiltUpTest/**/*'
end