Skip to content

Commit

Permalink
Fix Mappable extension
Browse files Browse the repository at this point in the history
It's need to make it public.
  • Loading branch information
Rafael da Silva Ferreira committed Mar 30, 2017
1 parent 7df7e90 commit 636168c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion JSONStub.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'JSONStub'
s.version = '0.1.4'
s.version = '0.1.5'
s.summary = 'Use JSONStub to easily load JSON files into your Mappable objects.'

# This description is used to generate tags and improve search results.
Expand Down
2 changes: 1 addition & 1 deletion JSONStub/Classes/Mappable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

import protocol ObjectMapper.Mappable

extension Mappable {
public extension Mappable {
init?(fromFileName file: String) {
guard let json = file.fileDictionary() else { return nil }

Expand Down

0 comments on commit 636168c

Please sign in to comment.