-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPhotosRx.podspec
More file actions
20 lines (20 loc) · 864 Bytes
/
PhotosRx.podspec
File metadata and controls
20 lines (20 loc) · 864 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "PhotosRx"
s.version = "1.0.0"
s.summary = "Helpful classes and extensions for the iOS Photos framework"
s.description = <<-DESC
Helpful classes and extensions for the iOS Photos framework
DESC
s.homepage = "https://github.com/rpassis/PhotosRx"
s.license = { :type => "MIT", :file => "LICENSE.md" }
s.author = { "Rogerio de Paula Assis" => "rogerio@fastmail.com" }
s.swift_version = "4.2"
s.ios.deployment_target = "8.0"
# s.osx.deployment_target = "10.10"
# s.tvos.deployment_target = "9.0"
# s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/rpassis/PhotosRx.git", :tag => "#{s.version}" }
# s.source_files = 'Source/Common/*.swift'
s.ios.source_files = 'Source/iOS/*.swift'
s.dependency "RxSwift", "~> 4.4"
end