-
Notifications
You must be signed in to change notification settings - Fork 39
/
Rudder.podspec
32 lines (22 loc) · 1.26 KB
/
Rudder.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
27
28
29
30
31
32
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'Rudder'
s.version = package['version']
s.summary = "Privacy and Security focused Segment-alternative. iOS ,tvOS and watchOS SDK"
s.description = <<-DESC
Rudder is a platform for collecting, storing and routing customer event data to dozens of tools. Rudder is open-source, can run in your cloud environment (AWS, GCP, Azure or even your data-centre) and provides a powerful transformation framework to process your event data on the fly.
DESC
s.homepage = "https://github.com/rudderlabs/rudder-sdk-ios"
s.license = { :type => "Apache", :file => "LICENSE.md" }
s.author = { "RudderStack" => "[email protected]" }
s.source = { :git => "https://github.com/rudderlabs/rudder-sdk-ios.git", :tag => "v#{s.version}" }
s.resource_bundles = { s.name => 'Sources/Resources/PrivacyInfo.xcprivacy' }
s.ios.deployment_target = '12.0'
s.tvos.deployment_target = '11.0'
s.watchos.deployment_target = '7.0'
s.swift_versions = ['5.0']
s.frameworks = 'Foundation'
s.source_files = 'Sources/**/*.{h,m}'
s.dependency 'MetricsReporter', '2.0.0'
end