forked from ReachFive/reachfive-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReach5Future.podspec
More file actions
25 lines (23 loc) · 1.09 KB
/
Reach5Future.podspec
File metadata and controls
25 lines (23 loc) · 1.09 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
require_relative './version'
Pod::Spec.new do |spec|
spec.name = "Reach5Future"
spec.version = $VERSION
spec.summary = "Reachfive Future bridge"
spec.description = <<-DESC
ReachFive Compatibility bridge to keep BrightFutures with Reach5
DESC
spec.homepage = "https://github.com/ReachFive/reachfive-ios-future"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "ReachFive"
spec.authors = { "François" => "francois.devemy@reach5.co", "Pierre" => "pierre.bar@reach5.co" }
spec.swift_versions = ["5"]
spec.source = { :git => "https://github.com/ReachFive/reachfive-ios-future.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Core/Classes/**/*.*"
spec.platform = :ios
spec.ios.deployment_target = $IOS_DEPLOYMENT_TARGET
spec.resource_bundle = {
'Reach5Future' => ['Sources/Core/PrivacyInfo.xcprivacy']
}
spec.dependency 'BrightFutures', '~> 8.2.0'
spec.dependency 'Reach5', '~> 10.0.0'
end