Skip to content

Commit

Permalink
change public to another class
Browse files Browse the repository at this point in the history
  • Loading branch information
Hadevs committed Jul 8, 2019
1 parent f7b1ce3 commit a5fd5cb
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
Binary file not shown.
2 changes: 1 addition & 1 deletion SwiftInjector/Containerable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

public protocol Containerable: class {
protocol Containerable: class {
typealias Object = AnyObject
typealias ServiceName = String
typealias Service = (() -> Object)
Expand Down
2 changes: 1 addition & 1 deletion SwiftInjector/DIContainer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import Foundation

class DIContainer: Container {
public class DIContainer: Container {
var parentContainer: Containerable

init(parentContainer: Containerable? = nil) {
Expand Down
2 changes: 1 addition & 1 deletion SwiftInjectorable.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |spec|
#
spec.swift_version = ['4.2', '5.0']
spec.name = "SwiftInjectorable"
spec.version = "0.0.1"
spec.version = "0.0.1.1"
spec.summary = "SwiftInjector - library for dependency injection, maden for convinient and fast properties connection."

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

0 comments on commit a5fd5cb

Please sign in to comment.