Sha256: 29b9a63ccb8230be7d4cf08519927b58ff22996508bd9af58c3e7129006cbf42
Contents?: true
Size: 635 Bytes
Versions: 37
Compression:
Stored size: 635 Bytes
Contents
module Inch module API module Options class Filter < Base # This module is included here and in Command::Options::BaseList # to ensure the same default values for the command-line and library # interface module DefaultAttributeValues DEFAULT_VISIBILITY = [:public, :protected] end include DefaultAttributeValues attribute :visibility, DEFAULT_VISIBILITY attribute :namespaces attribute :undocumented attribute :depth end def self.Filter(options_or_hash) Filter.new(options_or_hash) end end end end
Version data entries
37 entries across 37 versions & 1 rubygems