Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #2 from microsoftgraph/vidadhee/cocoapods
Browse files Browse the repository at this point in the history
Cocopods support
  • Loading branch information
dadheech115 authored Feb 26, 2019
2 parents fb17ce2 + 1bd2381 commit 11c9cca
Show file tree
Hide file tree
Showing 18 changed files with 114 additions and 271 deletions.
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ xcuserdata/
# you should judge for yourself, the pros and cons are mentioned at:
# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control
#
# Pods/
MSGraphMSALAuthProvider/Pods/

# Carthage
#
# Add this line if you want to avoid checking in source code from Carthage dependencies.
# Carthage/Checkouts
Carthage/Checkouts

Carthage/Build

Expand Down
7 changes: 1 addition & 6 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,6 +1 @@
[submodule "MSGraphMSALAuthProvider/msalIos"]
path = MSGraphMSALAuthProvider/msalIos
url = https://github.com/AzureAD/microsoft-authentication-library-for-objc
[submodule "MSGraphMSALAuthProvider/msgraph-sdk-objc"]
path = MSGraphMSALAuthProvider/msgraph-sdk-objc
url = https://github.com/microsoftgraph/msgraph-sdk-objc.git

2 changes: 2 additions & 0 deletions Cartfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github "AzureAD/microsoft-authentication-library-for-objc" == 0.2.3
github "microsoftgraph/msgraph-sdk-objc" == 0.1.2
2 changes: 2 additions & 0 deletions Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
github "AzureAD/microsoft-authentication-library-for-objc" "0.2.3"
github "microsoftgraph/msgraph-sdk-objc" "0.1.2"
27 changes: 27 additions & 0 deletions MSGraphMSALAuthProvider.podspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@

Pod::Spec.new do |s|

s.name = "MSGraphMSALAuthProvider"
s.version = "0.1.1"
s.summary = "Microsoft Graph Auth Provider for MSAL."

s.description = <<-DESC
Integrate authentication in your apps using this provider to add the capability of communicating with MSGraphClientSDK.
DESC

s.homepage = "http://graph.microsoft.io"
s.license = { :type => "MIT", :file => "LICENSE" }
s.author = 'Microsoft Graph'


s.ios.deployment_target = "10.0"

s.source = { :git => "https://github.com/microsoftgraph/msgraph-sdk-objc-auth.git", :tag=> s.version }

s.source_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.{h,m}"
s.exclude_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProviderTests/*"
s.public_header_files = "MSGraphMSALAuthProvider/MSGraphMSALAuthProvider/*.h"

s.dependency 'MSGraphClientSDK', '~> 0.1.2'
s.dependency 'MSAL', '~> 0.2'
end
7 changes: 0 additions & 7 deletions MSGraphMSALAuthProvider.xcworkspace/contents.xcworkspacedata

This file was deleted.

This file was deleted.

This file was deleted.

Loading

0 comments on commit 11c9cca

Please sign in to comment.