Skip to content

Commit

Permalink
code clean
Browse files Browse the repository at this point in the history
  • Loading branch information
[email protected] committed Apr 27, 2017
1 parent 44a5134 commit 9d055b4
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Demo-MAC/LKDB-Demo.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [[ $? != 0 ]] ; then\n cat << EOM\nerror: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\nEOM\n exit 1\nfi\n";
shellScript = "diff \"${PODS_ROOT}/../Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n";
showEnvVarsInLog = 0;
};
686DD3019C0E9C61D7DE306E /* [CP] Embed Pods Frameworks */ = {
Expand Down
14 changes: 9 additions & 5 deletions Demo-MAC/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,20 @@ PODS:
- FMDB (2.6.2):
- FMDB/standard (= 2.6.2)
- FMDB/standard (2.6.2)
- LKDBHelper (2.3.2):
- LKDBHelper (2.4.2):
- FMDB

DEPENDENCIES:
- LKDBHelper
- LKDBHelper (from `../`)

EXTERNAL SOURCES:
LKDBHelper:
:path: ../

SPEC CHECKSUMS:
FMDB: 854a0341b4726e53276f2a8996f06f1b80f9259a
LKDBHelper: 282cb4e56541e8f07d430465700bf2b891837a44
LKDBHelper: ab67373b32f47463bf5f838d730f225824f4492a

PODFILE CHECKSUM: ed29d60a42995845b9d80a336b783a78e6ce4ba3
PODFILE CHECKSUM: 55aa9e60a0c0196dcfede16e2e14ab1a75b79fef

COCOAPODS: 1.0.1
COCOAPODS: 1.1.1
2 changes: 1 addition & 1 deletion LKDBHelper/Helper/LKDBHelper.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
//

#import <Foundation/Foundation.h>
#import "FMDB.h"
#import <FMDB/FMDB.h>
#import "LKDBUtils.h"
#import "LKDB+Mapping.h"
#import "NSObject+LKDBHelper.h"
Expand Down

0 comments on commit 9d055b4

Please sign in to comment.