Skip to content

Commit

Permalink
Resolving merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
audaciouscode committed Jun 22, 2017
2 parents df701da + 1dbc286 commit 389255e
Show file tree
Hide file tree
Showing 26 changed files with 841 additions and 1,177 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -13,7 +13,7 @@ before_install:
script:
- xcodebuild test -list -project 'PassiveDataKit.xcodeproj'
- set -o pipefail && travis_retry xcodebuild test -scheme 'PassiveDataKit' -project 'PassiveDataKit.xcodeproj' -destination 'platform=iOS Simulator,name=iPhone 6s,OS=10.2'
- xcodebuild -project 'PassiveDataKit.xcodeproj' | tee xcodebuild.log
- xcodebuild -project 'PassiveDataKit.xcodeproj' -scheme 'PassiveDataKit' | tee xcodebuild.log
- oclint-xcodebuild
- oclint-json-compilation-database
-e Mixpanel
Expand All @@ -22,4 +22,5 @@ script:
-disable-rule=PreferEarlyExit
-disable-rule=LongMethod
-disable-rule=LongVariableName

-disable-rule=HighCyclomaticComplexity
-disable-rule=HighNPathComplexity
815 changes: 153 additions & 662 deletions PassiveDataKit.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0800"
LastUpgradeVersion = "0830"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "0800"
LastUpgradeVersion = "0830"
version = "1.3">
<BuildAction
parallelizeBuildables = "YES"
Expand Down
2 changes: 1 addition & 1 deletion PassiveDataKit/Info.plist
Expand Up @@ -19,7 +19,7 @@
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<string>1</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
Expand Down
15 changes: 15 additions & 0 deletions PassiveDataKit/PDKBaseGenerator.h
@@ -0,0 +1,15 @@
//
// PDKBaseGenerator.h
// PassiveDataKit
//
// Created by Chris Karr on 6/18/17.
// Copyright © 2017 Audacious Software. All rights reserved.
//

@import Foundation;

#import "PassiveDataKit.h"

@interface PDKBaseGenerator : NSObject<PDKGenerator>

@end
32 changes: 32 additions & 0 deletions PassiveDataKit/PDKBaseGenerator.m
@@ -0,0 +1,32 @@
//
// PDKBaseGenerator.m
// PassiveDataKit
//
// Created by Chris Karr on 6/18/17.
// Copyright © 2017 Audacious Software. All rights reserved.
//

#import "PDKBaseGenerator.h"

#define GENERATOR_ID @"pdk-base-generator"

@implementation PDKBaseGenerator

- (NSString *) fullGeneratorName {
return [NSString stringWithFormat:@"%@: %@", [self generatorId], [[PassiveDataKit sharedInstance] userAgent]];
}

- (NSString *) generatorId {
return GENERATOR_ID;
}

- (void) updateOptions:(NSDictionary *) options {

}

- (UIView *) visualizationForSize:(CGSize) size {
return nil;
}


@end
20 changes: 0 additions & 20 deletions PassiveDataKit/PDKDataPointsManager.h

This file was deleted.

0 comments on commit 389255e

Please sign in to comment.