forked from SDOSLabs/SDOSFirebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSDOSFirebase.podspec
More file actions
22 lines (19 loc) · 798 Bytes
/
SDOSFirebase.podspec
File metadata and controls
22 lines (19 loc) · 798 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
@version = "2.0.0"
Pod::Spec.new do |spec|
spec.platform = :ios, '9.0'
spec.name = 'SDOSFirebase'
spec.authors = 'SDOS'
spec.version = @version
spec.license = { :type => 'MIT' }
spec.homepage = 'https://github.com/SDOSLabs/SDOSFirebase'
spec.summary = 'Librería para integrar las analíticas de Firebase'
spec.source = { :git => "https://github.com/SDOSLabs/SDOSFirebase.git", :tag => "v#{spec.version}" }
spec.framework = ['Foundation', 'UIKit']
spec.requires_arc = true
spec.subspec 'SDOSFirebase' do |s2|
s2.preserve_paths = 'src/Classes/*'
s2.source_files = ['src/Classes/*{*.m,*.h,*.swift}', 'src/Classes/**/*{*.m,*.h,*.swift}']
end
spec.dependency 'Firebase/Core', '~> 5.4'
spec.static_framework = true
end