lib/qonfig/commands/base.rb in qonfig-0.10.0 vs lib/qonfig/commands/base.rb in qonfig-0.11.0

- old
+ new

@@ -1,16 +1,12 @@ # frozen_string_literal: true -module Qonfig - module Commands - # @api private - # @since 0.1.0 - class Base - # @param settings [Qonfig::Settings] - # @return [void] - # - # @api private - # @since 0.1.0 - def call(settings); end - end - end +# @api private +# @since 0.1.0 +class Qonfig::Commands::Base + # @param settings [Qonfig::Settings] + # @return [void] + # + # @api private + # @since 0.1.0 + def call(settings); end end