-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBookstoreModule.podspec
More file actions
27 lines (23 loc) · 926 Bytes
/
Copy pathBookstoreModule.podspec
File metadata and controls
27 lines (23 loc) · 926 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
26
27
Pod::Spec.new do |spec|
spec.name = 'BookstoreModule'
spec.version = '0.0.1'
spec.summary = 'A short description of Bookstore Module.'
spec.description = <<-DESC
Bookstore 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/bookstorewidget.git', :tag => '#{spec.version}' }
spec.source_files = 'Sources/*.swift', 'Sources/**/*.swift'
spec.frameworks = 'UIKit', 'Foundation'
spec.dependency 'IBACore'
spec.dependency 'IBACoreUI'
spec.dependency 'Kingfisher'
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/*.swift'
test_spec.dependency 'Quick'
test_spec.dependency 'Nimble'
end
end