forked from dehesa/CodableCSV
-
Notifications
You must be signed in to change notification settings - Fork 0
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 #3 from bloom/dehesa-master
Keep updated with the original repo
- Loading branch information
Showing
63 changed files
with
7,714 additions
and
7,600 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
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "CodableCSV" | ||
s.version = "0.6.6" | ||
s.version = "0.6.7" | ||
s.summary = "Read and write CSV files row-by-row or through Swift's Codable interface." | ||
s.description = <<-DESC | ||
CodableCSV offers imperative and declarative ways to read and write CSV files. It is extensively configurable and is capable of reading multiple types of entries and write to many outputs. | ||
DESC | ||
s.homepage = "https://github.com/dehesa/CodableCSV" | ||
s.license = { :type => "MIT", :file => "LICENSE" } | ||
s.author = { "Marcos Sánchez-Dehesa Carballo" => "[email protected]" } | ||
s.ios.deployment_target = "9.0" | ||
s.ios.deployment_target = "11.0" | ||
s.osx.deployment_target = "10.10" | ||
s.watchos.deployment_target = "2.0" | ||
s.tvos.deployment_target = "9.0" | ||
s.swift_version = ["5.1", "5.2", "5.3"] | ||
s.swift_version = ["5.3", "5.4", "5.5"] | ||
s.source = { :git => "https://github.com/dehesa/CodableCSV.git", :tag => "#{s.version}" } | ||
s.source_files = "sources", "sources/**/*.swift" | ||
|
||
|
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 |
---|---|---|
@@ -1,18 +1,18 @@ | ||
// swift-tools-version:5.1 | ||
// swift-tools-version:5.3 | ||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "CodableCSV", | ||
platforms: [ | ||
.macOS(.v10_10), .iOS(.v9), .tvOS(.v9), .watchOS(.v2) | ||
], | ||
products: [ | ||
.library(name: "CodableCSV", targets: ["CodableCSV"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "CodableCSV", dependencies: [], path: "sources"), | ||
.testTarget(name: "CodableCSVTests", dependencies: ["CodableCSV"], path: "tests"), | ||
.testTarget(name: "CodableCSVBenchmarks", dependencies: ["CodableCSV"], path: "benchmarks") | ||
] | ||
name: "CodableCSV", | ||
platforms: [ | ||
.macOS(.v10_10), .iOS(.v11), .tvOS(.v9), .watchOS(.v2) | ||
], | ||
products: [ | ||
.library(name: "CodableCSV", targets: ["CodableCSV"]), | ||
], | ||
dependencies: [], | ||
targets: [ | ||
.target(name: "CodableCSV", dependencies: [], path: "sources"), | ||
.testTarget(name: "CodableCSVTests", dependencies: ["CodableCSV"], path: "tests"), | ||
.testTarget(name: "CodableCSVBenchmarks", dependencies: ["CodableCSV"], path: "benchmarks") | ||
] | ||
) |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.