-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathBubblePictures.podspec
More file actions
19 lines (18 loc) · 929 Bytes
/
BubblePictures.podspec
File metadata and controls
19 lines (18 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |s|
s.name = 'BubblePictures'
s.version = '2.1.3'
s.summary = 'Framework for showing bubbles like pictures.'
s.description = 'Framework for showing bubbles like pictures inside a collection View, the frameworks handles everything for you, you just need to pass the pictures with the titles and thats it.'
s.homepage = 'https://github.com/kbelter/BubblePictures'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Kevin Belter' => 'kevin.belter@outlook.com' }
s.source = { :git => 'https://github.com/kbelter/BubblePictures.git', :tag => s.version.to_s }
s.ios.deployment_target = '9.0'
s.source_files = 'BubblePictures/Classes/**/*'
s.resource_bundles = {
'BubblePictures' => ['BubblePictures/Assets/**/*']
}
s.frameworks = 'UIKit'
s.dependency 'SDWebImage'
s.swift_version = '5.0'
end