forked from realm/SwiftLint
-
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.
mostly to address previous deprecation warnings when compiling with Swift 4.0.2.
- Loading branch information
Showing
12 changed files
with
49 additions
and
31 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 |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "jpsim/SourceKitten" ~> 0.18.2 | ||
github "scottrhoyt/SwiftyTextTable" ~> 0.7.0 | ||
github "jpsim/SourceKitten" ~> 0.18.4 | ||
github "jpsim/SwiftyTextTable" "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,3 +1,3 @@ | ||
github "Carthage/Commandant" "master" | ||
github "jspahrsummers/xcconfigs" "4ac967d12f72c2ccc7f34d163268d09296923a7c" | ||
github "jpsim/Yams" ~> 0.3 | ||
github "jpsim/Yams" ~> 0.4 |
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,7 +1,7 @@ | ||
github "Carthage/Commandant" "d06c7471ac8747e1bc8e538eb12d44aeb28b08d5" | ||
github "Carthage/Commandant" "3ff9019f7afd189c43a349f819684988031053a0" | ||
github "antitypical/Result" "3.2.4" | ||
github "drmohundro/SWXMLHash" "4.2.3" | ||
github "jpsim/SourceKitten" "0.18.2" | ||
github "jpsim/Yams" "0.3.7" | ||
github "drmohundro/SWXMLHash" "4.2.5" | ||
github "jpsim/SourceKitten" "0.18.4" | ||
github "jpsim/SwiftyTextTable" "fb31390e74392773d0f587a3b1481ee65056e075" | ||
github "jpsim/Yams" "0.4.1" | ||
github "jspahrsummers/xcconfigs" "4ac967d12f72c2ccc7f34d163268d09296923a7c" | ||
github "scottrhoyt/SwiftyTextTable" "0.7.0" |
Submodule Commandant
updated
2 files
+1 −1 | Sources/Commandant/ArgumentParser.swift | |
+2 −2 | Sources/Commandant/HelpCommand.swift |
Submodule SWXMLHash
updated
13 files
Submodule SourceKitten
updated
38 files
Submodule SwiftyTextTable
updated
2 files
+2 −3 | README.md | |
+21 −3 | Source/SwiftyTextTable/TextTable.swift |
Submodule Yams
updated
25 files
+1 −1 | .travis.yml | |
+1 −1 | Package@swift-4.swift | |
+4 −9 | README.md | |
+0 −394 | Sources/CYaml/src/dumper.c | |
+0 −453 | Sources/CYaml/src/loader.c | |
+153 −67 | Sources/Yams/Constructor.swift | |
+326 −0 | Sources/Yams/Decoder.swift | |
+96 −32 | Sources/Yams/Emitter.swift | |
+345 −0 | Sources/Yams/Encoder.swift | |
+1 −1 | Sources/Yams/Node.Mapping.swift | |
+1 −1 | Sources/Yams/Node.Sequence.swift | |
+2 −2 | Sources/Yams/Parser.swift | |
+115 −38 | Sources/Yams/Representer.swift | |
+84 −40 | Sources/Yams/Resolver.swift | |
+8 −2 | Tests/LinuxMain.swift | |
+29 −13 | Tests/YamsTests/ConstructorTests.swift | |
+16 −1 | Tests/YamsTests/EmitterTests.swift | |
+996 −0 | Tests/YamsTests/EncoderTests.swift | |
+2 −2 | Tests/YamsTests/PerformanceTests.swift | |
+38 −1 | Tests/YamsTests/ResolverTests.swift | |
+14 −14 | Tests/YamsTests/SpecTests.swift | |
+1 −1 | Tests/YamsTests/TestHelper.swift | |
+1 −1 | Yams.podspec | |
+1 −1 | Yams.xcodeproj/Yams_Info.plist | |
+12 −8 | Yams.xcodeproj/project.pbxproj |
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