Skip to content

Commit

Permalink
Fix naming conflict with FLUX.
Browse files Browse the repository at this point in the history
  • Loading branch information
sergeyzenchenko committed Aug 19, 2016
1 parent a259654 commit 849170d
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
16 changes: 8 additions & 8 deletions Example/Pods/Pods.xcodeproj/project.pbxproj

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 1 addition & 4 deletions Oscar.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = "Oscar"
s.version = "1.0.1"
s.version = "1.0.4"
s.summary = "Actor programming model framework"

s.description = "The actor model in computer science is a mathematical model of concurrent computation that treats \"actors\" as the universal primitives of concurrent computation: in response to a message that it receives, an actor can make local decisions, create more actors, send more messages, and determine how to respond to the next message received.(Wikipedia)"
Expand All @@ -24,9 +24,6 @@ Pod::Spec.new do |s|
s.requires_arc = true

s.source_files = 'Pod/Classes/**/*'
s.resource_bundles = {
'Oscar' => ['Pod/Assets/*.png']
}

s.public_header_files = 'Pod/Classes/**/*.h'
s.dependency 'RXPromise', '~> 0.13'
Expand Down
2 changes: 1 addition & 1 deletion Pod/Classes/ActorProvider/OSPullActorProvider.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
//

#import "OSPullActorProvider.h"
#import "NSArray+Functional.h"
#import "NSArray+Functional_Oscar.h"
#import "OSActor.h"
#import "OSActorExecutor.h"

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#import <Foundation/Foundation.h>

@interface NSArray (Functional)
@interface NSArray (Functional_Oscar)

- (NSArray *)map:(id (^)(id))mapBlock;
- (NSArray *)filter:(BOOL (^)(id))filterBlock;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
// Copyright (c) 2015 Techery. All rights reserved.
//

#import "NSArray+Functional.h"
#import "NSArray+Functional_Oscar.h"


@implementation NSArray(Functional)
@implementation NSArray(Functional_Oscar)

- (NSArray *)map:(id (^)(id))mapBlock {
NSMutableArray *result = [[NSMutableArray alloc] init];
Expand Down

0 comments on commit 849170d

Please sign in to comment.