-
Notifications
You must be signed in to change notification settings - Fork 21
/
Lasso.podspec
23 lines (18 loc) · 1.03 KB
/
Lasso.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#
# 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 = 'Lasso'
s.version = '1.6.0'
s.summary = 'iOS architectural pattern and 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.swift_versions = '4.2', '5', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9', '5.10'
s.ios.deployment_target = '13.0'
s.source_files = 'Sources/Lasso/**/*'
end