Sha256: a6843375abb5775dddfc3b660109b0728c3fca52164edabbe007d571142b602a

Contents?: true

Size: 1.37 KB

Versions: 9

Compression:

Stored size: 1.37 KB

Contents

# Copyright (c) 2013-2015 SUSE LLC
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of version 3 of the GNU General Public License as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.   See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, contact SUSE LLC.
#
# To contact SUSE about this file by physical or electronic mail,
# you may find current contact information at www.suse.com

class RepositoriesRenderer < Renderer
  def content(description)
    return unless description.repositories

    if description.repositories.empty?
      puts "System has no repositories"
    end

    list do
      description.repositories.each do |p|
        item "#{p.name}" do
          puts "URI: #{p.url}"
          puts "Alias: #{p.alias}"
          puts "Enabled: #{p.enabled ? "Yes" : "No"}"
          puts "Refresh: #{p.autorefresh ? "Yes" : "No"}" if p.autorefresh != nil
          puts "Priority: #{p.priority}" if p.priority != nil
          puts "Package Manager: #{p.package_manager}"
        end
      end
    end
  end

  def display_name
    "Repositories"
  end
end

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
machinery-tool-1.14.2 plugins/repositories/repositories_renderer.rb
machinery-tool-1.14.1 plugins/repositories/repositories_renderer.rb
machinery-tool-1.14.0 plugins/repositories/repositories_renderer.rb
machinery-tool-1.13.0 plugins/repositories/repositories_renderer.rb
machinery-tool-1.12.0 plugins/repositories/repositories_renderer.rb
machinery-tool-1.11.2 plugins/repositories/repositories_renderer.rb
machinery-tool-1.11.1 plugins/repositories/repositories_renderer.rb
machinery-tool-1.11.0 plugins/repositories/repositories_renderer.rb
machinery-tool-1.10.0 plugins/repositories/repositories_renderer.rb