Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Reduce specificity for RxSwift podspec dependency #12

Merged
merged 2 commits into from
Apr 16, 2017
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RxAutomaton.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ Pod::Spec.new do |s|
s.source = { :git => "https://github.com/inamiy/RxAutomaton.git", :tag => "#{s.version}" }
s.source_files = "Sources/**/*.swift"

s.dependency "RxSwift", "~> 3.0.0"
s.dependency "RxSwift", "~> 3.0"
end
2 changes: 1 addition & 1 deletion Sources/Automaton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ extension ObservableType {
case let .error(error):
let error = "Binding error to variable: \(error)"
#if DEBUG
rxFatalError(error)
fatalError(error)
#else
print(error)
#endif
Expand Down