- Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathPublishedObject.podspec
More file actions
Latest commit
16 lines (14 loc) · 743 Bytes
/
Copy pathPublishedObject.podspec
File metadata and controls
16 lines (14 loc) · 743 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Pod::Spec.newdo |s|
s.name='PublishedObject'
s.version='0.1.5'
s.license={type: 'MIT'}
s.summary='A property wrapper that forwards the objectWillChange of the wrapped ObservableObject to the enclosing ObservableObjects objectWillChange.'
s.homepage='https://github.com/Amzd/PublishedObject'
s.author={'Casper "Amzd" Zandbergen'=>'info@casperzandbergen.nl'}
s.source={:git=>'https://github.com/Amzd/PublishedObject.git',:tag=>s.version.to_s}
s.source_files='Sources/PublishedObject/*.swift'
s.swift_version='5.2'
s.ios.deployment_target='11.0'
s.tvos.deployment_target='11.0'
s.osx.deployment_target='10.13'
end