Sha256: 187f5db51d936153526e8b25c8e8e35ea6ac078095c2438d53fc3701ce14c7a9
Contents?: true
Size: 766 Bytes
Versions: 34
Compression:
Stored size: 766 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'.color(:cyan), '', description_hint_grades, description_hint_arrows ] end def list_options(opts) super opts.on('--numbers', 'Show numbers instead of grades and arrows') do @numbers = true end end end end end end end
Version data entries
34 entries across 34 versions & 1 rubygems