Skip to content

Commit a5fd5cb

Browse files
author
Hadevs
committed
change public to another class
1 parent f7b1ce3 commit a5fd5cb

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

SwiftInjector/Containerable.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import Foundation
1010

11-
public protocol Containerable: class {
11+
protocol Containerable: class {
1212
typealias Object = AnyObject
1313
typealias ServiceName = String
1414
typealias Service = (() -> Object)

SwiftInjector/DIContainer.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import Foundation
1010

11-
class DIContainer: Container {
11+
public class DIContainer: Container {
1212
var parentContainer: Containerable
1313

1414
init(parentContainer: Containerable? = nil) {

SwiftInjectorable.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
1616
#
1717
spec.swift_version = ['4.2', '5.0']
1818
spec.name = "SwiftInjectorable"
19-
spec.version = "0.0.1"
19+
spec.version = "0.0.1.1"
2020
spec.summary = "SwiftInjector - library for dependency injection, maden for convinient and fast properties connection."
2121

2222
# This description is used to generate tags and improve search results.

0 commit comments

Comments
 (0)