Skip to content

Commit 636168c

Browse files
author
Rafael da Silva Ferreira
committed
Fix Mappable extension
It's need to make it public.
1 parent 7df7e90 commit 636168c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

JSONStub.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
Pod::Spec.new do |s|
1010
s.name = 'JSONStub'
11-
s.version = '0.1.4'
11+
s.version = '0.1.5'
1212
s.summary = 'Use JSONStub to easily load JSON files into your Mappable objects.'
1313

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

JSONStub/Classes/Mappable.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
import protocol ObjectMapper.Mappable
1010

11-
extension Mappable {
11+
public extension Mappable {
1212
init?(fromFileName file: String) {
1313
guard let json = file.fileDictionary() else { return nil }
1414

0 commit comments

Comments
 (0)