Skip to content

Commit

Permalink
Merge pull request #10 from tarunon/fix/set_public_RawRepresentable_e…
Browse files Browse the repository at this point in the history
…xtension_permission

set public permission and remove @testable import
  • Loading branch information
tarunon committed Mar 28, 2016
2 parents 064773b + 2a912eb commit 0b67cac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/RawRepresentable.swift
Expand Up @@ -8,7 +8,7 @@

import Foundation

extension RawRepresentable where Self: Encodable {
public extension RawRepresentable where Self: Encodable {
func encode() throws -> JSON {
return try encode(self.rawValue)
}
Expand Down
2 changes: 1 addition & 1 deletion Tests/EncoderTests.swift
Expand Up @@ -7,7 +7,7 @@
//

import XCTest
@testable import Illuso
import Illuso

class EncoderTests: XCTestCase {

Expand Down
2 changes: 1 addition & 1 deletion Tests/Model.swift
Expand Up @@ -7,7 +7,7 @@
//

import Foundation
@testable import Illuso
import Illuso

struct StandardEncodables {
let null: Any? = nil
Expand Down

0 comments on commit 0b67cac

Please sign in to comment.