Sha256: 30aa0d52f567b1b3b0f7afb6666818b5443d6fa67ee0eb09aff74b114ef1534a

Contents?: true

Size: 497 Bytes

Versions: 1

Compression:

Stored size: 497 Bytes

Contents

# encoding: utf-8
module PasswordChanger
  class ApplicationConfig < FeduxOrgStdlib::AppConfig
    option :csv_file, nil
    option :verbose_mode, false
    option :debug_mode, false
    option :user, nil
    option :ask_new_password, false
    option :output_format, %w(csv)
    option :show_screenshot_on_error, true
    option :viewer_command, 'xdg-open'
    option :plugin_whitelist, []
    option :plugin_blacklist, []

    private

    def _config_name
      'application'
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
password_changer-0.0.3 lib/password_changer/application_config.rb