Sha256: 7f310a6e5c0d453a0ff561aede9af6c6d59f73d0ed574e00351f5360adbb37fb
Contents?: true
Size: 1.29 KB
Versions: 17
Compression:
Stored size: 1.29 KB
Contents
# -*- encoding: utf-8 -*- # # Author:: Fletcher Nichol (<fnichol@nichol.ca>) # # Copyright (C) 2013, Fletcher Nichol # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. require 'busser/plugin' require 'busser/thor' module Busser module Command # Plugin list command. # # @author Fletcher Nichol <fnichol@nichol.ca> # class PluginList < Busser::Thor::BaseGroup def list if plugin_data.empty? say "No plugins installed yet" else print_table([["Plugin", "Version"]] + plugin_data) end end private def plugin_data @plugin_data ||= Busser::Plugin.runner_plugins.map do |path| spec = Busser::Plugin.gem_from_path(path) [File.basename(path), (spec && spec.version)] end end end end end
Version data entries
17 entries across 17 versions & 1 rubygems