-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPDFReaderModule.podspec
More file actions
34 lines (29 loc) · 1.21 KB
/
Copy pathPDFReaderModule.podspec
File metadata and controls
34 lines (29 loc) · 1.21 KB
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
33
34
#
# Be sure to run `pod spec lint PDFReaderModule.podspec' to ensure this is a
# valid spec and to remove all comments including this before submitting the spec.
#
# To learn more about Podspec attributes see https://guides.cocoapods.org/syntax/podspec.html
# To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
#
Pod::Spec.new do |spec|
spec.name = 'PDFReaderModule'
spec.version = '0.0.1'
spec.summary = 'A short description of PDF Reader Module.'
spec.description = <<-DESC
PDF Reader Module
DESC
spec.homepage = 'https://ibuldapp.com'
spec.license = 'COMMERCIAL'
spec.author = { 'Anton Boyarkin' => 'anton.boyarkin@icloud.com' }
spec.platform = :ios, '10.0'
spec.source = { :git => 'git@gitlab.vladimir.ibuildapp.com:ios/pdfreaderwidget.git', :tag => '#{spec.version}' }
spec.source_files = 'Source/*.swift', 'Source/**/*.swift'
spec.frameworks = 'UIKit', 'Foundation'
spec.dependency 'IBACore'
spec.dependency 'IBACoreUI'
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/*.swift'
test_spec.dependency 'Quick'
test_spec.dependency 'Nimble'
end
end