-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from gumob:develop
Develop
- Loading branch information
Showing
68 changed files
with
11,554 additions
and
1,474 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
module: TLDExtractSwift | ||
version: 3.0.0 | ||
|
||
author: Kojiro Futamura | ||
author_url: https://github.com/gumob | ||
github_url: https://github.com/gumob/TLDExtractSwift | ||
# copyright: 'Copyright © 2024 Kojiro Futamura. All rights reserved.' | ||
|
||
source_host_url: https://github.com/gumob/TLDExtractSwift | ||
root_url: https://github.com/gumob/TLDExtractSwift/tree/3.0.0/docs/ | ||
|
||
readme: "README.md" | ||
|
||
theme: fullwidth | ||
|
||
xcodebuild_arguments: | ||
- -project | ||
- ../TLDExtractSwift.xcodeproj | ||
- -scheme | ||
- TLDExtractSwift | ||
|
||
output: "docs/swiftdoc" | ||
min_acl: public | ||
clean: true | ||
skip_undocumented: false | ||
hide_documentation_coverage: true | ||
source_directory: Sources | ||
umbrella_header: "Sources/TLDExtractSwift.h" | ||
|
||
exclude: | ||
- Tests/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// Created by Kojiro futamura on 2018-11-17. | ||
// | ||
|
||
import Foundation | ||
|
||
/// An internal extension for the Bundle class that provides a way to access the current bundle. | ||
/// This is useful for loading resources from the framework's bundle. | ||
internal extension Bundle { | ||
class ClassForFramework { | ||
} | ||
|
||
static var current: Bundle { | ||
return Bundle.init(for: ClassForFramework.self) | ||
} | ||
} | ||
|
||
/// An internal extension for the String class that provides a property to check if the string is a comment. | ||
/// A string is considered a comment if it starts with "//". | ||
internal extension String { | ||
var isComment: Bool { | ||
return self.starts(with: "//") | ||
} | ||
} |
Oops, something went wrong.