Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix SPM paths #105

Merged
merged 3 commits into from Feb 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Expand Up @@ -18,5 +18,6 @@ All notable changes to this project will be documented in this file.

#### Fixed

* Fix SPM Support
* Unify download and upload progress handling.
* Fix `Reactive<DataRequest>.progress` logic so it actually completes.
7 changes: 3 additions & 4 deletions Package.swift
Expand Up @@ -24,9 +24,8 @@ let package = Package(
// Targets can depend on other targets in this package, and on products in packages which this package depends on.
.target(
name: "RxAlamofire",
dependencies: ["RxSwift", "Alamofire"]),
.testTarget(
name: "RxAlamofireTests",
dependencies: ["RxAlamofire", "RxSwift", "Alamofire"]),
dependencies: ["RxSwift", "Alamofire"],
path: "Sources",
exclude: ["Cocoa"])
]
)