forked from ww-tech/lasso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
LassoTestUtilities.podspec
28 lines (21 loc) · 1.12 KB
/
LassoTestUtilities.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
#
# Be sure to run `pod lib lint Lasso.podspec' to ensure this is a
# valid spec before submitting.
#
Pod::Spec.new do |s|
s.name = 'LassoTestUtilities'
s.version = '1.3.0'
s.summary = 'Unit test support for the Lasso framework.'
s.description = 'Lasso is an iOS application architecture for building discrete, composable and testable compenents both big and small - from single one-off screens, through complex flows, to high-level application structures.'
s.homepage = 'https://github.com/ww-tech/lasso'
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
s.authors = { 'Steven Grosmark' => '[email protected]',
'Trevor Beasty' => '[email protected]' }
s.source = { :git => 'https://github.com/ww-tech/lasso.git', :tag => s.version.to_s }
s.pod_target_xcconfig = { 'ENABLE_BITCODE' => 'NO' }
s.swift_versions = '4.2', '5', '5.1', '5.2', '5.3', '5.4', '5.5'
s.ios.deployment_target = '13.0'
s.framework = 'XCTest'
s.dependency 'Lasso'
s.source_files = 'Sources/LassoTestUtilities/**/*'
end