# encoding: utf-8 module FeduxOrgStdlib module Plugins # Placeholder when no associated gem found, displays warning class NoPlugin private attr_reader :name public def initialize(name) @name = name end def method_missing(*args) warn "Warning: The plugin '#{name}' was not found! (no gem found)" end end end end