-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Lobster.podspec
31 lines (24 loc) · 1.02 KB
/
Lobster.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
29
30
31
Pod::Spec.new do |spec|
spec.name = 'Lobster'
spec.version = '3.1.1'
spec.author = { 'Suguru Kishimoto' => '[email protected]' }
spec.summary = 'The Type-safe Firebase-RemoteConfig helper library'
spec.homepage = 'https://github.com/sgr-ksmt/Lobster'
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.source = { :git => 'https://github.com/sgr-ksmt/Lobster.git', :tag => spec.version.to_s }
spec.ios.deployment_target = '11.0'
spec.swift_versions = ['4.2', '5.0']
spec.requires_arc = true
spec.static_framework = true
spec.dependency 'Firebase/RemoteConfig', '>= 7.0.0'
spec.default_subspecs = 'Core'
spec.subspec 'Core' do |subspec|
subspec.source_files = 'Sources/Core/**/*.swift'
end
spec.subspec 'Combine' do |subspec|
subspec.dependency 'Lobster/Core'
subspec.source_files = 'Sources/Combine/**/*.swift'
subspec.ios.deployment_target = '13.0'
subspec.ios.frameworks = 'Combine'
end
end