forked from microsoftgraph/msgraph-sdk-objc-models
-
Notifications
You must be signed in to change notification settings - Fork 0
/
MSGraphClientModels.podspec
32 lines (19 loc) · 1.21 KB
/
MSGraphClientModels.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
32
Pod::Spec.new do |s|
s.name = "MSGraphClientModels"
s.version = "1.4.0"
s.summary = "Microsoft Graph Models to be used with MSGraphClientSDK."
s.description = <<-DESC
Use these models to convert raw data from MSGraphClientSDK to models and back.
DESC
s.homepage = "http://graph.microsoft.com"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'Microsoft Graph'
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/microsoftgraph/msgraph-sdk-objc-models.git", :tag=> s.version }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "{BaseModels,GeneratedModels}/*.{h,m}"
s.exclude_files = "MSGraphClientModelsTests/*"
s.public_header_files = "{BaseModels,GeneratedModels}/*.h"
end