Skip to content

Commit 434bec4

Browse files
committed
Specify cocoapod source for iOS-only files
1 parent 3734642 commit 434bec4

File tree

5 files changed

+21
-6
lines changed

5 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,12 @@ All notable changes to this project will be documented in this file.
33

44
---
55

6-
## [master](https://github.com/RxSwiftCommunity/RxSwiftUtilities/tree/master) (Xcode 9 / Swift 4 compatible)
6+
## [master](https://github.com/RxSwiftCommunity/RxSwiftUtilities/tree/master) (Xcode 10 / Swift 4.2 compatible)
77

88
* nothing *
99

1010
## [2.1.0](https://github.com/RxSwiftCommunity/RxSwiftUtilities/releases/tag/2.1.0) (Xcode 10 / Swift 4.2 compatible)
1111

12-
* Update to Swift 4.2
13-
* Update to RxSwift 4.3.1
1412
* Add two-way binding operator `<->`
1513

1614
## [2.0.1](https://github.com/RxSwiftCommunity/RxSwiftUtilities/releases/tag/2.0.1) (Xcode 9 / Swift 4 compatible)

RxSwiftUtilities.podspec

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ Helpful classes and extensions for RxSwift which don't belong in RxSwift core.
1414
s.tvos.deployment_target = "9.0"
1515
s.watchos.deployment_target = "2.0"
1616
s.source = { :git => "https://github.com/RxSwiftCommunity/RxSwiftUtilities.git", :tag => "#{s.version}" }
17-
s.source_files = 'Source/*.swift'
17+
s.source_files = 'Source/Common/*.swift'
18+
s.ios.source_files = 'Source/iOS/*.swift'
1819
s.dependency "RxSwift", "~> 4.0"
1920
s.dependency "RxCocoa", "~> 4.0"
2021
end

RxSwiftUtilities.xcodeproj/project.pbxproj

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,8 @@
188188
8803430A1DE303160055DA33 /* Source */ = {
189189
isa = PBXGroup;
190190
children = (
191-
8803436A1DE396290055DA33 /* ActivityIndicator.swift */,
192-
88EB631B216B2D2E00130C74 /* TwoWayBinding.swift */,
191+
889498AF2170AC6D00FCC3FE /* Common */,
192+
889498B02170AC7900FCC3FE /* iOS */,
193193
880343321DE315A90055DA33 /* Supporting Files */,
194194
);
195195
path = Source;
@@ -270,6 +270,22 @@
270270
name = macOS;
271271
sourceTree = "<group>";
272272
};
273+
889498AF2170AC6D00FCC3FE /* Common */ = {
274+
isa = PBXGroup;
275+
children = (
276+
8803436A1DE396290055DA33 /* ActivityIndicator.swift */,
277+
);
278+
path = Common;
279+
sourceTree = "<group>";
280+
};
281+
889498B02170AC7900FCC3FE /* iOS */ = {
282+
isa = PBXGroup;
283+
children = (
284+
88EB631B216B2D2E00130C74 /* TwoWayBinding.swift */,
285+
);
286+
path = iOS;
287+
sourceTree = "<group>";
288+
};
273289
/* End PBXGroup section */
274290

275291
/* Begin PBXHeadersBuildPhase section */
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)