forked from DroidsOnRoids/PhotosHelper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPhotosHelper.podspec
executable file
·26 lines (20 loc) · 1019 Bytes
/
PhotosHelper.podspec
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
Pod::Spec.new do |s|
s.name = "PhotosHelper"
s.version = "0.2.5"
s.summary = "Collection of methods to work with Photos Framework in Swift."
s.description = <<-DESC
Simplest way to interact with the Photos.app.
Create albums, save images in one line of code.
Asynchronous, closure based, written in latest Swift.
Constantly updated, support for other asset types will come soon.
DESC
s.homepage = "https://github.com/DroidsOnRoids/PhotosHelper"
s.license = 'MIT'
s.author = { "Andrzej Filipowicz" => "[email protected]" }
s.source = { :git => "https://github.com/DroidsOnRoids/PhotosHelper.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/NJFilipowicz'
s.platform = :ios, '8.0'
s.requires_arc = true
s.source_files = 'PhotosHelper.swift'
s.frameworks = 'Photos'
end