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

Commit

Permalink
Merge pull request #12 from jwhitley/jwhitley/rxswift-podspec-version
Browse files Browse the repository at this point in the history
Reduce specificity for RxSwift podspec dependency
  • Loading branch information
inamiy authored Apr 16, 2017
2 parents 6f29378 + 68bb452 commit a78fff5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
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

0 comments on commit a78fff5

Please sign in to comment.