Skip to content

Commit 10984e1

Browse files
mikhailmulyarandrew-muzz
authored andcommitted
Carthage support
1 parent 78569fe commit 10984e1

9 files changed

+80
-49
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,4 @@ fastlane/report.xml
6363
fastlane/Preview.html
6464
fastlane/screenshots
6565
fastlane/test_output
66+
Carthage

Cartfile

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github "tid-kijyun/Kanna" ~> 5.0.0

Cartfile.resolved

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github "tid-kijyun/Kanna" "5.0.0"

Ocarina.xcodeproj/project.pbxproj

+72-49
Large diffs are not rendered by default.

Ocarina/OcarinaManager.swift

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
import Foundation
10+
import Kanna
1011

1112
/// Manages the requests of informations for each URL and makes sure the information is cached.
1213
public class OcarinaManager: NSObject {

Ocarina/OcarinaManagerDelegate.swift

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
import Foundation
10+
import Kanna
1011

1112
public protocol OcarinaManagerDelegate: class {
1213

Ocarina/TwitterCardInformation.swift

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

99
import Foundation
1010
import AVFoundation
11+
import Kanna
1112

1213
public enum TwitterCardType: String {
1314
case summary = "summary"

Ocarina/URLInformation.swift

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

99
import UIKit
1010
import AVFoundation
11+
import Kanna
1112

1213
public enum URLInformationType: String {
1314

OcarinaTests/AdditionalParsingTests.swift

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
//
88

99
import XCTest
10+
import Kanna
1011
@testable import Ocarina
1112

1213
/// This test checks if addtional parsing using the delegate works.

0 commit comments

Comments
 (0)