class Rubannotate::Config

Attributes

logging_level[W]

Public Instance Methods

logging_level() click to toggle source
# File lib/rubannotate/config.rb, line 15
def logging_level
  @logging_level ||= ::Logger::INFO
end
models_path() click to toggle source
# File lib/rubannotate/config.rb, line 7
def models_path
  @models_path ||= ['app/models']
end
models_path=(models_path) click to toggle source
# File lib/rubannotate/config.rb, line 11
def models_path=(models_path)
  @models_path = Array(models_path)
end