Sha256: 1e409c2f0e0a211b09a7178a50c64f9656ff8d386b3470a4f30e8bae5f300eeb
Contents?: true
Size: 745 Bytes
Versions: 38
Compression:
Stored size: 745 Bytes
Contents
module Inch module CLI module Command module Options class List < BaseList attribute :numbers, false def descriptions [ "", "Lists objects that can be improved regarding their documentation ordered by their grade.", "", "Example: " + "$ inch list lib/**/*.rb --all".cyan, "", description_hint_grades, description_hint_arrows ] end def list_options(opts) super opts.on("--numbers", "Show numbers instead of grades and arrows") do |depth| @numbers = true end end end end end end end
Version data entries
38 entries across 38 versions & 1 rubygems