Skip to content

Commit

Permalink
Merge pull request #4 from SylvanasX/swift_4
Browse files Browse the repository at this point in the history
Swift 4
  • Loading branch information
solidcell authored Feb 19, 2018
2 parents 9641e00 + 75e49e5 commit 30aac4e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 17 deletions.
16 changes: 13 additions & 3 deletions ExampleApp/ExampleApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -169,9 +169,16 @@
files = (
);
inputPaths = (
"${SRCROOT}/Pods/Target Support Files/Pods-ExampleApp/Pods-ExampleApp-frameworks.sh",
"${BUILT_PRODUCTS_DIR}/RxCocoa/RxCocoa.framework",
"${BUILT_PRODUCTS_DIR}/RxSwift/RxSwift.framework",
"${BUILT_PRODUCTS_DIR}/RxSwiftUtilities/RxSwiftUtilities.framework",
);
name = "[CP] Embed Pods Frameworks";
outputPaths = (
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxCocoa.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwift.framework",
"${TARGET_BUILD_DIR}/${FRAMEWORKS_FOLDER_PATH}/RxSwiftUtilities.framework",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
Expand Down Expand Up @@ -199,13 +206,16 @@
files = (
);
inputPaths = (
"${PODS_PODFILE_DIR_PATH}/Podfile.lock",
"${PODS_ROOT}/Manifest.lock",
);
name = "[CP] Check Pods Manifest.lock";
outputPaths = (
"$(DERIVED_FILE_DIR)/Pods-ExampleApp-checkManifestLockResult.txt",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
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";
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/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# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
/* End PBXShellScriptBuildPhase section */
Expand Down Expand Up @@ -344,7 +354,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.RxSwiftCommunity.ExampleApp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 4.0;
};
name = Debug;
};
Expand All @@ -358,7 +368,7 @@
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
PRODUCT_BUNDLE_IDENTIFIER = com.RxSwiftCommunity.ExampleApp;
PRODUCT_NAME = "$(TARGET_NAME)";
SWIFT_VERSION = 3.0;
SWIFT_VERSION = 4.0;
};
name = Release;
};
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
{
"images" : [
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "2x"
},
{
"idiom" : "iphone",
"size" : "20x20",
"scale" : "3x"
},
{
"idiom" : "iphone",
"size" : "29x29",
Expand Down Expand Up @@ -29,6 +39,11 @@
"idiom" : "iphone",
"size" : "60x60",
"scale" : "3x"
},
{
"idiom" : "ios-marketing",
"size" : "1024x1024",
"scale" : "1x"
}
],
"info" : {
Expand Down
22 changes: 11 additions & 11 deletions ExampleApp/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,23 +1,23 @@
PODS:
- RxCocoa (3.0.1):
- RxSwift (~> 3.0)
- RxSwift (3.0.1)
- RxSwiftUtilities (1.0.1):
- RxCocoa (~> 3.0)
- RxSwift (~> 3.0)
- RxCocoa (4.1.2):
- RxSwift (~> 4.0)
- RxSwift (4.1.2)
- RxSwiftUtilities (2.0.0):
- RxCocoa (~> 4.0)
- RxSwift (~> 4.0)

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

EXTERNAL SOURCES:
RxSwiftUtilities:
:path: "../"
:path: ../

SPEC CHECKSUMS:
RxCocoa: 15a52fc590dcc700cb4a690a633b5c5184ce3a78
RxSwift: af5680055c4ad04480189c52d28385b1029493a6
RxSwiftUtilities: 2614ffe05d2da158f79f50314a08122d13ac61d4
RxCocoa: d88ba0f1f6abf040011a9eb4b539324fc426843a
RxSwift: e49536837d9901277638493ea537394d4b55f570
RxSwiftUtilities: b292dcdc286744db591fea3146c9382abc6e0033

PODFILE CHECKSUM: 7684ee7ca38232e18d184c27a385894b625d7ee4

COCOAPODS: 1.1.1
COCOAPODS: 1.4.0
6 changes: 3 additions & 3 deletions RxSwiftUtilities.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "RxSwiftUtilities"
s.version = "1.0.1"
s.version = "2.0.0"
s.summary = "Helpful classes and extensions for RxSwift"
s.description = <<-DESC
Helpful classes and extensions for RxSwift which don't belong in RxSwift core.
Expand All @@ -14,6 +14,6 @@ Helpful classes and extensions for RxSwift which don't belong in RxSwift core.
s.watchos.deployment_target = "2.0"
s.source = { :git => "https://github.com/RxSwiftCommunity/RxSwiftUtilities.git", :tag => "#{s.version}" }
s.source_files = 'Source/*.swift'
s.dependency "RxSwift", "~> 3.0"
s.dependency "RxCocoa", "~> 3.0"
s.dependency "RxSwift", "~> 4.0"
s.dependency "RxCocoa", "~> 4.0"
end

0 comments on commit 30aac4e

Please sign in to comment.