Bump SwiftLint to 0.52.2 (#215)
This is the parser of SwiftBeanCount. It takes a string or a file and returns a Ledger (from SwiftBeanCountModel).
Ledger
Either call Parser.parse(contentOf: URL) or Parser.parse(string: String). You can check out the complete documentation here.
Parser.parse(contentOf: URL)
Parser.parse(string: String)
The library supports the Swift Package Manger, so simply add a dependency in your Package.swift:
Package.swift
.package(url: "https://github.com/Nef10/SwiftBeanCountParser.git", .exact("X.Y.Z")),
Note: as per semantic versioning all versions changes < 1.0.0 can be breaking, so please use .exact for now
.exact
版权所有:中国计算机学会技术支持:开源发展技术委员会 京ICP备13000930号-9 京公网安备 11010802032778号
SwiftBeanCountParser
This project is part for SwiftBeanCount, please check out the main documentation here.
What
This is the parser of SwiftBeanCount. It takes a string or a file and returns a
Ledger(from SwiftBeanCountModel).How
Either call
Parser.parse(contentOf: URL)orParser.parse(string: String). You can check out the complete documentation here.Usage
The library supports the Swift Package Manger, so simply add a dependency in your
Package.swift:Note: as per semantic versioning all versions changes < 1.0.0 can be breaking, so please use
.exactfor now