forked from Anviking/Decodable
-
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.
- Loading branch information
Showing
107 changed files
with
78,172 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -40,3 +40,4 @@ Carthage/Build | |
|
||
# General OS X | ||
.DS_Store | ||
.swiftpm |
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 |
---|---|---|
@@ -1,12 +1,20 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "Decodable" | ||
s.version = "0.6.0" | ||
s.summary = "Swift JSON parsing done (more) right" | ||
s.description = "Simple yet powerful object mapping made possible by Swift 2's error handling. Greatly inspired by Argo, but without any functional programming and bizillion operators." | ||
s.homepage = "https://github.com/Anviking/Decodable" | ||
s.name = 'Decodable' | ||
s.version = '0.7.0' | ||
s.summary = 'Swift JSON parsing done (more) right' | ||
s.description = 'Simple yet powerful object mapping made possible by Swift 2\'s error handling. Greatly inspired by Argo, but without any functional programming and bizillion operators.' | ||
s.homepage = 'https://github.com/Anviking/Decodable' | ||
s.license = 'MIT' | ||
s.author = { "Anviking" => "[email protected]" } | ||
s.source = { :git => "https://github.com/Anviking/Decodable.git", :tag => "#{s.version}" } | ||
s.author = { | ||
'Anviking' => '[email protected]', | ||
'Joe Mattiello' => '[email protected]' | ||
} | ||
s.source = { | ||
:git => 'https://github.com/newscorp-ghfb/Decodable.git', | ||
:tag => s.version.to_s | ||
} | ||
|
||
s.swift_versions = ['4.2', '5.0'] | ||
s.ios.deployment_target = '8.0' | ||
s.osx.deployment_target = '10.9' | ||
s.tvos.deployment_target = '9.0' | ||
|
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
8 changes: 8 additions & 0 deletions
8
Decodable.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist
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,8 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>IDEDidComputeMac32BitWarning</key> | ||
<true/> | ||
</dict> | ||
</plist> |
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 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,6 +1,23 @@ | ||
// swift-tools-version:5.1 | ||
|
||
import PackageDescription | ||
|
||
let package = Package( | ||
name: "Decodable", | ||
exclude: [ "Tests" ] | ||
) | ||
let package = Package(name: "Decodable", | ||
platforms: [ | ||
.iOS(.v8), | ||
.macOS(.v10_10), | ||
.tvOS(.v9), | ||
.watchOS(.v2) | ||
], | ||
products: | ||
[ | ||
.library(name: "Decodable", | ||
targets: ["Decodable"]) | ||
], | ||
targets: [ | ||
.target(name: "Decodable", | ||
path: "Sources"), | ||
// .testTarget(name: "DecodableTests", | ||
// path: "Tests") | ||
], | ||
swiftLanguageVersions: [.v5, .v4_2]) |
Oops, something went wrong.