-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPhotoGalleryModule.podspec
More file actions
37 lines (31 loc) · 1.3 KB
/
Copy pathPhotoGalleryModule.podspec
File metadata and controls
37 lines (31 loc) · 1.3 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
35
36
37
#
# Be sure to run `pod spec lint PhotoGalleryModule.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 = 'PhotoGalleryModule'
spec.version = '0.0.1'
spec.summary = 'A short description of PhotoGalleryModule.'
spec.description = <<-DESC
Photo Gallery 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/photogallerywidget.git', :tag => '#{spec.version}' }
spec.source_files = 'Sources/*.swift', 'Sources/**/*.swift'
spec.resources = 'Resources/**/*.*'
spec.frameworks = 'UIKit', 'Foundation'
spec.dependency 'IBACore'
spec.dependency 'IBACoreUI'
spec.static_framework = true
spec.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests/*.swift'
test_spec.dependency 'Quick'
test_spec.dependency 'Nimble'
end
end