-
Notifications
You must be signed in to change notification settings - Fork 3
/
MemfaultCloud.podspec
29 lines (24 loc) · 1.07 KB
/
MemfaultCloud.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
#
# Be sure to run `pod lib lint MemfaultCloud.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'MemfaultCloud'
s.version = '3.0.0'
s.summary = 'MemfaultCloud Podspec'
s.description = <<-DESC
A minimal SDK to facilitate integration of calls to
Memfault Cloud REST APIs in iOS mobile applications
DESC
s.homepage = 'https://github.com/memfault/memfault-ios-cloud'
s.license = { :type => 'Modified BSD', :file => 'LICENSE' }
s.author = { 'Memfault' => '[email protected]' }
s.source = { :git => 'https://github.com/memfault/memfault-ios-cloud.git', :tag => '3.0.0' }
s.ios.deployment_target = '13.0'
s.source_files = 'MemfaultCloud/Classes/**/*'
s.public_header_files = 'MemfaultCloud/Classes/include/**/*.h'
s.private_header_files = 'MemfaultCloud/Classes/*.h'
end