-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSYNDynamicAnalytics.podspec
More file actions
23 lines (20 loc) · 1022 Bytes
/
SYNDynamicAnalytics.podspec
File metadata and controls
23 lines (20 loc) · 1022 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "SYNDynamicAnalytics"
s.version = "0.1.3"
s.summary = "Automatically measure screen time on a view controller."
s.description = <<-DESC
SYNDynamicAnalytics provides a category on UIViewController that automatically handles measuring screen time on any UIViewController subclass. Blocks and delegate support to easily utilize any analytics library.
DESC
s.homepage = "https://github.com/Syntertainment/SYNDynamicAnalytics"
s.license = 'MIT'
s.author = { "Sidhant Gandhi" => "sidhantg@syntertainment.com" }
s.source = { :git => "https://github.com/Syntertainment/SYNDynamicAnalytics.git", :tag => s.version.to_s }
s.platform = :ios, '7.0'
s.requires_arc = true
s.source_files = 'Pod/Classes'
s.resource_bundles = {
'SYNDynamicAnalytics' => ['Pod/Assets/*.png']
}
s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
end