-
Notifications
You must be signed in to change notification settings - Fork 310
/
MMWormhole.podspec
26 lines (22 loc) · 1018 Bytes
/
MMWormhole.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
Pod::Spec.new do |s|
s.name = 'MMWormhole'
s.version = '2.0.0'
s.license = 'MIT'
s.summary = 'Message passing between apps and extensions.'
s.homepage = 'https://github.com/mutualmobile/MMWormhole'
s.authors = { 'Conrad Stoll' => '[email protected]' }
s.source = { :git => 'https://github.com/mutualmobile/MMWormhole.git', :tag => s.version.to_s }
s.requires_arc = true
s.default_subspec = 'Core'
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.10'
s.watchos.deployment_target = '2.0'
s.ios.frameworks = 'Foundation', 'WatchConnectivity'
s.osx.frameworks = 'Foundation'
s.watchos.frameworks = 'Foundation', 'WatchConnectivity'
s.subspec 'Core' do |core|
core.ios.source_files = 'Source/*.{h,m}'
core.watchos.source_files = 'Source/*.{h,m}'
core.osx.source_files = 'Source/MMWormhole.{h,m}', 'Source/MMWormholeFileTransiting.{h,m}', 'Source/MMWormholeCoordinatedFileTransiting.{h,m}', 'Source/MMWormholeTransiting.h'
end
end