Skip to content

Commit

Permalink
public
Browse files Browse the repository at this point in the history
  • Loading branch information
hip4yes committed Jan 22, 2020
1 parent bb9625c commit edd6961
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Aurum.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'Aurum'
s.version = '0.3.0'
s.version = '0.4.0'
s.summary = 'Evolution of Amber architecture'

# This description is used to generate tags and improve search results.
Expand Down
4 changes: 2 additions & 2 deletions Aurum/Classes/AurumModuleConfigurator.swift
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public protocol AurumModuleConfigurator {
func didLoad<A: Actor>(actor: A)
}

extension AurumModuleConfigurator{
public extension AurumModuleConfigurator{
func didLoad<A: Actor>(actor: A){ }

func create(data: RequiredData, rootController: UIViewController? = nil, outputListener: ((OutputAction) -> Void)? = nil) -> AurumModuleData<InputAction>{
Expand All @@ -45,7 +45,7 @@ extension AurumModuleConfigurator{

}

extension AurumModuleConfigurator where RequiredData == Void{
public extension AurumModuleConfigurator where RequiredData == Void{
func create(rootController: UIViewController? = nil, outputListener: ((OutputAction) -> Void)? = nil) -> AurumModuleData<InputAction>{
return create(data: (), rootController: rootController, outputListener: outputListener)
}
Expand Down

0 comments on commit edd6961

Please sign in to comment.