Skip to content

Commit

Permalink
Update SwiftyTextTable to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
norio-nomura committed Mar 19, 2016
1 parent 070bbb8 commit 0a6faaf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Cartfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
github "jpsim/SourceKitten" "0.11.0"
github "scottrhoyt/SwiftyTextTable" "0.2.1"
github "scottrhoyt/SwiftyTextTable" "0.3.0"
2 changes: 1 addition & 1 deletion Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
github "antitypical/Result" "1.0.2"
github "drmohundro/SWXMLHash" "2.1.0"
github "scottrhoyt/SwiftyTextTable" "0.2.1"
github "scottrhoyt/SwiftyTextTable" "0.3.0"
github "behrang/YamlSwift" "1.4.2"
github "jspahrsummers/xcconfigs" "0.9"
github "Carthage/Commandant" "0.8.3"
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ let package = Package(
dependencies: [
.Package(url: "https://github.com/jpsim/SourceKitten.git", majorVersion: 0, minor: 11),
.Package(url: "https://github.com/behrang/YamlSwift.git", majorVersion: 1),
.Package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", majorVersion: 0, minor: 2),
.Package(url: "https://github.com/scottrhoyt/SwiftyTextTable.git", majorVersion: 0, minor: 3),
]
)
5 changes: 3 additions & 2 deletions Source/swiftlint/Commands/RulesCommand.swift
Original file line number Diff line number Diff line change
Expand Up @@ -90,12 +90,13 @@ extension TextTable {
}
return nil
}()
addRow(ruleID,
addRow([
ruleID,
(rule is OptInRule) ? "yes" : "no",
(rule is CorrectableRule) ? "yes" : "no",
configuredRule != nil ? "yes" : "no",
(configuredRule ?? rule).configurationDescription
)
])
}
}
}

0 comments on commit 0a6faaf

Please sign in to comment.