forked from tualatrix/GAJavaScriptTracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGAJavaScriptTracker.podspec
More file actions
23 lines (22 loc) · 1.16 KB
/
GAJavaScriptTracker.podspec
File metadata and controls
23 lines (22 loc) · 1.16 KB
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 = "GAJavaScriptTracker"
s.version = "0.0.1"
s.summary = "Objective-C Cocoa Wrapper for javascript google analytics tracking on OSX."
s.description = <<-DESC
A longer description of GAJavaScriptTracker in Markdown format.
* Think: Why did you write this? What is the focus? What does it do?
* CocoaPods will be using this to generate tags, and improve search results.
* Try to keep it short, snappy and to the point.
* Finally, don't worry about the indent, CocoaPods strips it!
DESC
s.homepage = "https://github.com/doo/GAJavaScriptTracker"
s.license = { :type => 'doo GmbH', :file => 'LICENSE.txt' }
s.author = { "doo" => " [email protected]" }
s.platform = :osx
s.source = { :git => "https://github.com/iiiyu/GAJavaScriptTracker.git", :tag => s.version.to_s }
s.source_files = 'Classes', 'Classes/**/*.{h,m}'
# s.public_header_files = 'Classes/**/*.h'
s.resources = "Resources/main.html", "Resources/ga.js"
s.frameworks = 'Cocoa', 'WebKit'
s.requires_arc = true
end