-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathApp-Update-Tracker.podspec
More file actions
22 lines (16 loc) · 1.1 KB
/
App-Update-Tracker.podspec
File metadata and controls
22 lines (16 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Pod::Spec.new do |s|
s.name = "App-Update-Tracker"
s.version = "2.1.1"
s.summary = "AppUpdateTracker is a simple, lightweight iOS library intended to determine basic app install/update behavior."
s.description = <<-DESC
This library allows you to easily determine when the user uses your app after a fresh install, when the user updates your app (and the version from which (s)he updated), and how many times the user has opened a given version of your app. This library was created in order to help determine update information so that appropriate data migration logic can be run after an app update.
DESC
s.homepage = "https://github.com/Stunner/App-Update-Tracker"
s.license = { :type => "MIT", :file => "LICENSE.txt" }
s.author = { "Stunner" => "ajjubbal@ucdavis.edu" }
s.social_media_url = "http://twitter.com/ajubbal"
s.platform = :ios
s.source = { :git => "https://github.com/Stunner/App-Update-Tracker.git", :tag => s.version.to_s }
s.source_files = "AppUpdateTracker"
s.requires_arc = true
end