File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 22
33Pod ::Spec . new do |s |
44 s . name = 'Mini-Swift'
5- s . version = '1.0.1 '
5+ s . version = '1.0.2 '
66 s . swift_version = '5.0'
77 s . summary = 'The minimal expression of a Flux architecture in Swift.'
88
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ public protocol Group: Disposable {
2424public class ReducerGroup : Group {
2525
2626 public let disposeBag = CompositeDisposable ( )
27-
27+
2828 public init ( _ builder: ( ) -> [ Disposable ] ) {
2929 let disposable = builder ( )
3030 disposable. forEach { _ = disposeBag. insert ( $0) }
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public class TestMiddleware: Middleware {
3636 return TestOnlyAction ( )
3737 }
3838 }
39-
39+
4040 public init ( ) { }
4141
4242 /// Check if a given action have been intercepted before by the Middleware.
Original file line number Diff line number Diff line change @@ -25,6 +25,6 @@ public class LoggingService: Service {
2525 NSLog ( String ( dumping: action) )
2626 }
2727 }
28-
28+
2929 public init ( ) { }
3030}
You can’t perform that action at this time.
0 commit comments