Skip to content
Snippets Groups Projects
Commit d1a8cc08 authored by Jorge Canizales's avatar Jorge Canizales
Browse files

Adds podspec for RxLibrary and sample app

parent 5e0efd95
No related branches found
No related tags found
No related merge requests found
Showing
with 2686 additions and 0 deletions
# Xcode
#
build/
*.pbxuser
!default.pbxuser
*.mode1v3
!default.mode1v3
*.mode2v3
!default.mode2v3
*.perspectivev3
!default.perspectivev3
xcuserdata
*.xccheckout
*.moved-aside
DerivedData
*.hmap
*.ipa
*.xcuserstate
Pod::Spec.new do |s|
s.name = 'RxLibrary'
s.version = '0.0.1'
s.summary = 'Reactive Extensions library for iOS'
s.author = {
'Jorge Canizales' => 'jcanizales@google.com'
}
s.source_files = '*.{h,m}'
s.platform = :ios
s.ios.deployment_target = '6.0'
s.requires_arc = true
end
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod 'RxLibrary', :path => "../../RxLibrary"
target 'Sample' do
end
target 'SampleTests' do
end
PODS:
- RxLibrary (0.0.1)
DEPENDENCIES:
- RxLibrary (from `../../RxLibrary`)
EXTERNAL SOURCES:
RxLibrary:
:path: ../../RxLibrary
SPEC CHECKSUMS:
RxLibrary: fc24868ee72616e8c4e58128b439811fdade0da4
COCOAPODS: 0.35.0
../../../../../../RxLibrary/GRXImmediateWriter.h
\ No newline at end of file
../../../../../../RxLibrary/GRXWriteable.h
\ No newline at end of file
../../../../../../RxLibrary/GRXWriter+Immediate.h
\ No newline at end of file
../../../../../../RxLibrary/GRXWriter+Transformations.h
\ No newline at end of file
../../../../../../RxLibrary/GRXWriter.h
\ No newline at end of file
../../../../../../RxLibrary/NSEnumerator+GRXUtil.h
\ No newline at end of file
Pod::Spec.new do |s|
s.name = 'RxLibrary'
s.version = '0.0.1'
s.summary = 'Reactive Extensions library for iOS'
s.author = {
'Jorge Canizales' => 'jcanizales@google.com'
}
s.source_files = '*.{h,m}'
s.platform = :ios
s.ios.deployment_target = '6.0'
s.requires_arc = true
end
PODS:
- RxLibrary (0.0.1)
DEPENDENCIES:
- RxLibrary (from `../../RxLibrary`)
EXTERNAL SOURCES:
RxLibrary:
:path: ../../RxLibrary
SPEC CHECKSUMS:
RxLibrary: fc24868ee72616e8c4e58128b439811fdade0da4
COCOAPODS: 0.35.0
This diff is collapsed.
#include "Pods-RxLibrary.xcconfig"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary"
OTHER_LDFLAGS = -ObjC
PODS_ROOT = ${SRCROOT}
\ No newline at end of file
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_RxLibrary : NSObject
@end
@implementation PodsDummy_Pods_RxLibrary
@end
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-environment.h"
#include "Pods-Sample-RxLibrary.xcconfig"
GCC_PREPROCESSOR_DEFINITIONS = $(inherited) COCOAPODS=1
HEADER_SEARCH_PATHS = "${PODS_ROOT}/Headers/Build" "${PODS_ROOT}/Headers/Build/RxLibrary" "${PODS_ROOT}/Headers/Public" "${PODS_ROOT}/Headers/Public/RxLibrary"
OTHER_LDFLAGS = -ObjC
PODS_ROOT = ${SRCROOT}
\ No newline at end of file
#import <Foundation/Foundation.h>
@interface PodsDummy_Pods_Sample_RxLibrary : NSObject
@end
@implementation PodsDummy_Pods_Sample_RxLibrary
@end
#ifdef __OBJC__
#import <UIKit/UIKit.h>
#endif
#import "Pods-Sample-environment.h"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment