Skip to content
This repository has been archived by the owner on Apr 1, 2024. It is now read-only.

Commit

Permalink
Merge pull request #72 from NIFTYCloud-mbaas/develop
Browse files Browse the repository at this point in the history
updated version number 2.3.4
  • Loading branch information
ykokw committed Feb 6, 2017
2 parents ad32006 + f4309f7 commit 7a0856b
Show file tree
Hide file tree
Showing 52 changed files with 1,012 additions and 4,958 deletions.
4 changes: 2 additions & 2 deletions NCMB.podspec
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "NCMB"
s.version = "2.3.3"
s.version = "2.3.4"
s.summary = "NCMB is SDK for NIFTY Cloud mobile backend."
s.description = <<-DESC
NCMB is SDK for NIFTY Cloud mobile backend.
Expand All @@ -15,7 +15,7 @@ Pod::Spec.new do |s|
s.license = "Apache License, Version 2.0"
s.author = "NIFTY Corporation"
s.platform = :ios, "5.1"
s.source = { :git => 'https://github.com/NIFTYCloud-mbaas/ncmb_ios.git', :tag => 'v2.3.3' }
s.source = { :git => 'https://github.com/NIFTYCloud-mbaas/ncmb_ios.git', :tag => 'v2.3.4' }
s.source_files = "NCMB/**/*.{h,m,c}"
s.frameworks = "Foundation", "UIKit", "MobileCoreServices", "AudioToolbox", "SystemConfiguration"
s.requires_arc = true
Expand Down
172 changes: 0 additions & 172 deletions NCMB.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

8 changes: 0 additions & 8 deletions NCMB/NCMB.h
Expand Up @@ -29,16 +29,8 @@
#import "NCMBObject.h"
#import "NCMBUser.h"
#import "NCMBFile.h"
#import "NCMBTwitterUtils.h"
#import "NCMBScript.h"


#if defined(__has_include)
#if __has_include(<FacebookSDK/FacebookSDK.h>) || __has_include(<FBSDKLoginKit/FBSDKLoginKit.h>)
#import "NCMBFacebookUtils.h"
#endif
#endif

#ifdef NCMBTEST
#define NCMBDEBUGLOG(...) NSLog(__VA_ARGS__)
#else
Expand Down
3 changes: 2 additions & 1 deletion NCMB/NCMBConstants.h
Expand Up @@ -22,7 +22,7 @@

#pragma mark - error
#define ERRORDOMAIN @"NCMBErrorDomain"
#define SDK_VERSION @"2.3.3"
#define SDK_VERSION @"2.3.4"

#define DATA_MAIN_PATH [NSHomeDirectory() stringByAppendingPathComponent:@"Library/"]
#define COMMAND_CACHE_FOLDER_PATH [NSString stringWithFormat:@"%@/Private Documents/NCMB/Command Cache/", DATA_MAIN_PATH]
Expand All @@ -37,6 +37,7 @@ typedef void (^NCMBArrayResultBlock)(NSArray *objects, NSError *error);
typedef void (^NCMBSetResultBlock)(NSSet *channels, NSError *error);
typedef void (^NCMBUserResultBlock)(NCMBUser *user, NSError *error);
typedef void (^NCMBErrorResultBlock) (NSError *error);
typedef void (^NCMBAnyObjectResultBlock)(id object, NSError *error);

typedef void (^NCMBDataResultBlock)(NSData *data, NSError *error);
typedef void (^NCMBDataStreamResultBlock)(NSInputStream *stream, NSError *error);
Expand Down
144 changes: 0 additions & 144 deletions NCMB/NCMBFacebookUtils.h

This file was deleted.

0 comments on commit 7a0856b

Please sign in to comment.