-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMSession.podspec
More file actions
25 lines (20 loc) · 806 Bytes
/
MSession.podspec
File metadata and controls
25 lines (20 loc) · 806 Bytes
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
Pod::Spec.new do |s|
s.name = 'MSession'
s.version = '1.0.1'
s.summary = 'A simple way to manager session in your application'
s.homepage = 'https://github.com/vitormesquita/MSession'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Vitor mesquita' => '[email protected]' }
s.source = { :git => 'https://github.com/vitormesquita/MSession.git', :tag => s.version.to_s }
s.ios.deployment_target = '10.0'
s.default_subspec = "Core"
s.subspec "Core" do |ss|
ss.source_files = "Source/**/*"
end
s.subspec "Session" do |ss|
ss.source_files = "Source/Keychain/*", "Source/Session/*"
end
s.subspec "Auth" do |ss|
ss.source_files = "Source/Keychain/*", "Source/Auth/*"
end
end