forked from Parsely/AnalyticsSDK-iOS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParselyAnalytics.podspec
More file actions
20 lines (19 loc) · 875 Bytes
/
ParselyAnalytics.podspec
File metadata and controls
20 lines (19 loc) · 875 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# frozen_string_literal: true
Pod::Spec.new do |s|
s.name = 'ParselyAnalytics'
s.version = '0.2.4'
s.swift_versions = ['4.2', '5.0', '5.1', '5.2', '5.3', '5.4', '5.5']
s.summary = 'Parsely analytics integration for iOS'
s.homepage = 'https://www.parse.ly/help/integration/ios-sdk/'
s.license = 'Apache License, Version 2.0'
s.author = { 'Emmett Butler' => 'emmett@parsely.com' }
s.ios.deployment_target = '13.0'
s.tvos.deployment_target = '13.0'
s.source = { git: 'https://github.com/Parsely/AnalyticsSDK-iOS.git', tag: s.version.to_s }
s.source_files = 'Sources'
s.framework = 'Foundation'
s.test_spec 'Tests' do |test_spec|
test_spec.source_files = 'Tests'
test_spec.dependency 'Nimble'
end
end