-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathGoogleReporter.podspec
30 lines (23 loc) · 2.01 KB
/
GoogleReporter.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
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.name = "GoogleReporter"
s.version = "1.6.1"
s.summary = "Easily integrate your app with Google Analytics"
s.description = <<-DESC
Easily integrate Google Analytics into your iOS, macOS, and tvOS app without downloading any of the Google SDKs.
DESC
s.homepage = "https://github.com/ksmandersen/GoogleReporter"
# ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.license = "MIT"
# ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.author = { "Kristian Andersen" => "hello@kristian.co" }
s.social_media_url = "http://twitter.com/ksmandersen"
# ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.ios.deployment_target = "9.0"
s.osx.deployment_target = "10.10"
s.tvos.deployment_target = "9.0"
# ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source = { :git => "https://github.com/ksmandersen/GoogleReporter.git", :tag => "#{s.version}" }
# ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
s.source_files = "GoogleReporter/Source/*.swift"
end