-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from Automattic/develop
Merge develop into master for 0.0.9 release
- Loading branch information
Showing
7 changed files
with
88 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
Pod::Spec.new do |spec| | ||
spec.name = 'Automattic-Tracks-OSX' | ||
spec.version = File.read("Automattic-Tracks-iOS/TracksConstants.m").split("const TracksLibraryVersion = @\"").last.split("\"").first | ||
spec.platform = :osx, "10.8" | ||
spec.license = { :type => 'GPLv2' } | ||
spec.homepage = 'https://github.com/automattic/automattic-tracks-ios' | ||
spec.authors = { 'Aaron Douglas' => '[email protected]' } | ||
spec.summary = 'Simple way to track events in an iOS app with Automattic Tracks internal service' | ||
spec.source = { :git => 'https://github.com/Automattic/Automattic-Tracks-iOS.git', :tag => spec.version.to_s } | ||
spec.source_files = 'Automattic-Tracks-iOS/**/*.{h,m}' | ||
spec.resource_bundle = { 'DataModel' => ['Automattic-Tracks-iOS/**/*.xcdatamodeld'] } | ||
spec.framework = 'CoreData' | ||
spec.framework = 'CoreTelephony' | ||
|
||
spec.dependency 'CocoaLumberjack', '2.0.0' | ||
spec.dependency 'Reachability', '~>3.1' | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#import "TracksConstants.h" | ||
|
||
NSString *const TracksErrorDomain = @"TracksErrorDomain"; | ||
NSString *const TracksLibraryVersion = @"0.0.8"; | ||
NSString *const TracksLibraryVersion = @"0.0.9"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
#import <UIKit/UIKit.h> | ||
#import <Foundation/Foundation.h> | ||
|
||
@interface TracksDeviceInformation : NSObject | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters